/* =========================================================
   AWoRDS — SOLUCIONES TECNOLÓGICAS
   CSS PRINCIPAL CONSOLIDADO
   Ancho máximo: 1300px
   Responsive
========================================================= */


/* =========================================================
   01. VARIABLES
========================================================= */

:root {

    --blue: #075bd8;
    --blue-light: #1681ef;
    --blue-dark: #06356f;
    --blue-deep: #041f46;

    --text: #243447;
    --text-light: #718096;

    --white: #ffffff;
    --background: #f7f9fc;
    --border: #e4eaf1;

    --radius: 8px;

    --shadow:
        0 8px 25px rgba(22, 48, 82, .07);

    --shadow-hover:
        0 15px 35px rgba(22, 48, 82, .12);

    --transition:
        all .25s ease;
}


/* =========================================================
   02. RESET
========================================================= */

*,
*::before,
*::after { box-sizing: border-box; margin: 0; padding: 0;}
html { scroll-behavior: smooth;}
body {margin: 0; padding: 0; font-family:"Segoe UI", Arial, Helvetica, sans-serif; color: var(--text); background: var(--white); line-height: 1.6; overflow-x: hidden;}
img { max-width: 100%; height: auto;}
.imgbor { max-width: 100%; height: auto; border-radius: 10px;}
a {color: inherit; text-decoration: none;}
button {font-family: inherit; cursor: pointer; border: 0; background: none;}
ul {list-style: none;}
svg {display: block;}
/* =========================================================
   03. CONTENEDOR PRINCIPAL
========================================================= */
.site-wrapper { width: 100%; overflow: hidden;}
.container {width: calc(100% - 40px); max-width: 1300px; margin: 0 auto;}
/* =========================================================
   FASE 10.5
   HEADER FIJO
========================================================= */
.header { position: fixed; top: 0; left: 0; box-shadow: 0 2px 4px rgba(0, 0, 0, 0.04), 0 8px 20px rgba(0, 0, 0, 0.06);  background: var(--white);  width: 100%; z-index: 1000; transition:
background-color 0.3s ease, box-shadow 0.3s ease, padding 0.3s ease;}
/* =========================================================
   HEADER AL HACER SCROLL
======================================================== */
.header.header-scrolled {box-shadow: 0 4px 18px rgba(0, 0, 0, 0.08);}
/* =========================================================
   CONTENEDOR HEADER
========================================================= */
.header-container {min-height: 84px; display: flex; align-items: center; justify-content: space-between; gap: 30px; position: relative;}
/* =========================================================
   05. LOGO
========================================================= */
.logo,.footer-logo {display: inline-flex; align-items: center; gap:10px; flex-shrink: 0;}
.logo-symbol { width:42px; height: 42px; display: flex;

    align-items:
        center;

    justify-content:
        center;

    color:
        var(--white);

    background:
        linear-gradient(
            135deg,
            var(--blue),
            var(--blue-light)
        );

    border-radius:
        9px;

    box-shadow:
        0 6px 15px rgba(7,91,216,.18);
}


.logo-symbol svg {

    width:
        23px;

    height:
        23px;

    stroke-width:
        2.2;
}


.logo-text {

    display:
        flex;

    flex-direction:
        column;

    line-height:
        1;
}


.logo-text strong {

    color:
        var(--blue-dark);

    font-size:
        24px;

    font-weight:
        700;

    letter-spacing:
        -.7px;
}


.logo-text small {

    margin-top:
        5px;

    color:
        var(--text-light);

    font-size:
        7px;

    font-weight:
        700;

    letter-spacing:
        1.1px;
}


/* =========================================================
   06. NAVEGACIÓN
========================================================= */
.main-nav { margin-left: auto;}
.main-nav > ul {display: flex; align-items: center; gap: 4px;}
.nav-item {position: relative;}
.nav-item > a { min-height: 42px; display: flex; align-items: center; gap: 5px; padding:
        0 14px;

    color:
        #526173;

    font-size:
        14px;

    font-weight:
        500;

    border-radius:
        6px;

    transition:
        var(--transition);
}


.nav-item > a:hover,
.nav-item.active > a {

    color:
        var(--blue);

    background:
        #f4f8ff;
}


.nav-item > a svg {

    width:
        14px;

    height:
        14px;

    transition:
        transform .25s ease;
}


.nav-item:hover > a svg {

    transform:
        rotate(180deg);
}


/* =========================================================
   07. SUBMENÚ
========================================================= */
.has-submenu { position: relative;}
.submenu {position: absolute; top: calc(100% + 8px); left: 0; width:260px; padding: 8px;

    background:
        var(--white);

    border:
        1px solid var(--border);

    border-radius:
        9px;

    box-shadow:
        0 15px 40px rgba(15,40,70,.13);

    opacity:
        0;

    visibility:
        hidden;

    transform:
        translateY(8px);

    transition:
        opacity .2s ease,
        transform .2s ease,
        visibility .2s ease;
}


.has-submenu:hover > .submenu {

    opacity:
        1;

    visibility:
        visible;

    transform:
        translateY(0);
}


.submenu li a {

    display:
        flex;

    align-items:
        center;

    gap:
        11px;

    padding:
        11px 12px;

    color:
        var(--text);

    font-size:
        13px;

    border-radius:
        6px;

    transition:
        var(--transition);
}


.submenu li a:hover {

    color:
        var(--blue);

    background:
        #f4f8ff;
}


.submenu li a svg {

    width:
        17px;

    height:
        17px;

    color:
        var(--blue);

    flex-shrink:
        0;
}


/* =========================================================
   08. HEADER BUTTON
========================================================= */

.header-button {

    display:
        inline-flex;

    align-items:
        center;

    justify-content:
        center;

    gap:
        8px;

    min-height:
        42px;

    padding:
        0 18px;

    color:
        var(--white);

    background:
        var(--blue);

    border-radius:
        6px;

    font-size:
        13px;

    font-weight:
        600;

    white-space:
        nowrap;

    transition:
        var(--transition);

    box-shadow:
        0 5px 15px rgba(7,91,216,.18);
}


.header-button:hover {

    background:
        var(--blue-dark);

    transform:
        translateY(-2px);

    box-shadow:
        0 8px 20px rgba(7,91,216,.25);
}


.header-button svg {

    width:
        17px;

    height:
        17px;
}


.mobile-menu-btn {

    display:
        none;

    width:
        42px;

    height:
        42px;

    align-items:
        center;

    justify-content:
        center;

    color:
        var(--blue-dark);

    border:
        1px solid var(--border);

    border-radius:
        7px;
}


.mobile-menu-btn svg {

    width:
        21px;

    height:
        21px;
}


/* =========================================================
   09. HERO
========================================================= */

.hero {

    position:
        relative;

    min-height:
        560px;

    display:
        flex;

    align-items:
        center;

background:
    linear-gradient(rgba(248, 251, 255, 0.75), rgba(238, 245, 255, 0.75)),
    url('../images/hero.png') center / cover no-repeat;

    overflow:
        hidden;
}


.hero::before {

    content:
        "";

    position:
        absolute;

    width:
        520px;

    height:
        520px;

    right:
        -170px;

    top:
        -160px;

    border-radius:
        50%;

    background:
        rgba(22,129,239,.055);
}


.hero-container {

    position:
        relative;

    z-index:
        2;

    min-height:
        560px;

    display:
        grid;

    grid-template-columns:
        1fr 1fr;

    align-items:
        center;

    gap:
        70px;
}


.hero-content {

    max-width:
        610px;
}


.section-label {

    display:
        inline-block;

    margin-bottom:
        15px;

    color:
        var(--blue);

    font-size:
        11px;

    font-weight:
        700;

    letter-spacing:
        1.7px;
}


.hero h1 {

    max-width:
        650px;

    color:
        var(--blue-dark);

    font-size:
        clamp(40px, 4vw, 57px);

    font-weight:
        700;

    line-height:
        1.08;

    letter-spacing:
        -1.8px;
}


.hero-line {

    display:
        block;

    width:
        58px;

    height:
        3px;

    margin:
        23px 0;

    background:
        var(--blue);

    border-radius:
        10px;
}


.hero-content p {

    max-width:
        570px;

    margin-bottom:
        28px;

    color:
        var(--text-light);

    font-size:
        16px;

    line-height:
        1.75;
}


.primary-button {

    display:
        inline-flex;

    align-items:
        center;

    justify-content:
        center;

    gap:
        9px;

    min-height:
        48px;

    padding:
        0 22px;

    color:
        var(--white);

    background:
        var(--blue);

    border-radius:
        6px;

    font-size:
        13px;

    font-weight:
        600;

    box-shadow:
        0 7px 20px rgba(7,91,216,.19);

    transition:
        var(--transition);
}


.primary-button:hover {

    background:
        var(--blue-dark);

    transform:
        translateY(-2px);

    box-shadow:
        0 11px 25px rgba(7,91,216,.25);
}


.primary-button svg {width:17px; height:17px;}
/* =========================================================
   10. HERO ILUSTRACIÓN
========================================================= */
.hero-image {display:flex; align-items: center; justify-content: center;}
.hero-illustration { position: relative;  width: min(100%, 500px); height: 360px; display: flex; align-items: center; justify-content:  center;}
.hero-screen { position: relative; width: 300px; height: 210px; display: flex; align-items: center; justify-content: center; gap: 8px;

    color:
        var(--white);

    background:
    linear-gradient(
        rgba(0, 45, 100, 0.65),
        rgba(0, 90, 180, 0.65)
    ),
    url('../images/tecnologia.png');

background-size: cover;
background-position: center;
background-repeat: no-repeat;

    border-radius:
        13px;

    box-shadow:
        0 25px 55px rgba(7,55,110,.22);
}


.hero-logo-symbol {

    font-size:
        38px;

    font-weight:
        300;
}


.hero-screen strong {

    font-size:
        34px;

    font-weight:
        700;
}


.floating-card {

    position:
        absolute;

    width:
        62px;

    height:
        62px;

    display:
        flex;

    align-items:
        center;

    justify-content:
        center;

    color:
        var(--blue);

    background:
        var(--white);

    border:
        1px solid var(--border);

    border-radius:
        12px;

    box-shadow:
        0 12px 30px rgba(20,50,90,.12);

    animation:
        awFloat 4s ease-in-out infinite;
}


.floating-card svg {

    width:
        27px;

    height:
        27px;
}


.card-one {

    top:
        35px;

    left:
        20px;
}


.card-two {

    right:
        10px;

    top:
        55px;

    animation-delay:
        .8s;
}


.card-three {

    right:
        35px;

    bottom:
        35px;

    animation-delay:
        1.5s;
}


@keyframes awFloat {

    0%,
    100% {
        transform:
            translateY(0);
    }

    50% {
        transform:
            translateY(-8px);
    }
}


/* =========================================================
   11. HERO CONTROLES
========================================================= */
.hero-arrow {position: absolute; top: 50%; z-index:5; width: 42px; height: 42px; display:
        flex;

    align-items:
        center;

    justify-content:
        center;

    color:
        var(--blue);

    background:
        var(--white);

    border:
        1px solid var(--border);

    border-radius:
        50%;

    box-shadow:
        0 5px 18px rgba(20,50,90,.08);

    transform:
        translateY(-50%);

    transition:
        var(--transition);
}


.hero-arrow:hover {

    color:
        var(--white);

    background:
        var(--blue);
}


.hero-arrow svg {

    width:
        18px;

    height:
        18px;
}


.hero-prev {

    left:
        18px;
}


.hero-next {

    right:
        18px;
}


.hero-dots {

    position:
        absolute;

    bottom:
        25px;

    left:
        50%;

    z-index:
        5;

    display:
        flex;

    gap:
        7px;

    transform:
        translateX(-50%);
}


.hero-dot {

    width:
        7px;

    height:
        7px;

    padding:
        0;

    background:
        #c9d5e3;

    border-radius:
        50%;

    transition:
        var(--transition);
}


.hero-dot.active {

    width:
        23px;

    background:
        var(--blue);

    border-radius:
        10px;
}


/* =========================================================
   12. BENEFICIOS
========================================================= */
.benefits { background:
        var(--white);

    border-bottom:
        1px solid var(--border);
}


.benefits-container {

    min-height:
        115px;

    display:
        grid;

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

    align-items:
        center;
}


.benefit-item {

    display:
        flex;

    align-items:
        center;

    gap:
        13px;

    min-height:
        65px;

    padding:
        10px 22px;

    border-right:
        1px solid var(--border);
}


.benefit-item:last-child {

    border-right:
        0;
}


.benefit-icon {

    width:
        45px;

    height:
        45px;

    display:
        flex;

    align-items:
        center;

    justify-content:
        center;

    flex-shrink:
        0;

    color:
        var(--blue);

    background:
        #eef5ff;

    border-radius:
        9px;
}


.benefit-icon svg {

    width:
        21px;

    height:
        21px;
}


.benefit-item h3 {

    margin-bottom:
        2px;

    color:
        var(--blue-dark);

    font-size:
        14px;

    font-weight:
        650;
}


.benefit-item p {

    color:
        var(--text-light);

    font-size:
        11px;

    line-height:
        1.45;
}


/* =========================================================
   13. QUIÉNES SOMOS
========================================================= */

.about-section {

    padding:
        95px 0;

    background:
        var(--white);
}


.about-container {

    display:
        grid;

    grid-template-columns:
        1fr 1fr;

    align-items:
        center;

    gap:
        80px;
}


.about-content {

    max-width:
        590px;
}


.about-content h2 {

    margin-bottom:
        22px;

    color:
        var(--blue-dark);

    font-size:
        clamp(32px, 3vw, 43px);

    line-height:
        1.14;

    letter-spacing:
        -1px;
}


.about-content p {

    margin-bottom:
        15px;

    color:
        var(--text-light);

    font-size:
        15px;

    line-height:
        1.75;
}


.about-content .primary-button {margin-top: 12px;}
.about-image { min-height: 380px; overflow: hidden; border-radius: 12px; box-shadow: var(--shadow);}
.about-image-placeholder {position:relative; min-height: 380px; display: flex; align-items: center;

    justify-content:
        center;

    background:
        linear-gradient(
            135deg,
            #eaf3ff,
            #dceaff
        );

    overflow: hidden;}


.about-image-placeholder::before {

    content:
        "";

    position:
        absolute;

    width:
        250px;

    height:
        250px;

    border:
        30px solid rgba(7,91,216,.08);

    border-radius:
        50%;
}


.about-image-overlay {

    position:
        relative;

    z-index:
        2;

    width:
        240px;

    min-height:
        180px;

    display:
        flex;

    flex-direction:
        column;

    align-items:
        center;

    justify-content:
        center;

    color:
        var(--white);

    background:
        linear-gradient(
            135deg,
            var(--blue-dark),
            var(--blue)
        );

    border-radius:
        14px;

    box-shadow:
        0 20px 45px rgba(7,55,110,.20);
}


.about-image-overlay svg {

    width:
        35px;

    height:
        35px;

    margin-bottom:
        10px;
}


.about-image-overlay strong {

    font-size:
        24px;
}


.about-image-overlay span {

    margin-top:
        3px;

    font-size:
        10px;

    opacity:
        .8;
}


/* =========================================================
   14. SECTION HEADING
========================================================= */

.services-section,
.clients-section {

    padding:
        90px 0;
}


.services-section {

    background:
        var(--background);
}


.section-heading {

    text-align:
        center;

    margin-bottom:
        45px;
}


.section-heading .section-label {

    margin-bottom:
        9px;
}


.section-heading h2 {

    color:
        var(--blue-dark);

    font-size:
        clamp(30px, 3vw, 40px);

    line-height:
        1.15;

    letter-spacing:
        -.8px;
}


.heading-line {

    display:
        block;

    width:
        48px;

    height:
        3px;

    margin:
        17px auto 0;

    background:
        var(--blue);

    border-radius:
        5px;
}


/* =========================================================
   15. SOLUCIONES / SERVICIOS
========================================================= */

.services-grid {

    display:
        grid;

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

    gap:
        18px;
}


.service-card {

    min-height:
        280px;

    display:
        flex;

    flex-direction:
        column;

    padding:
        28px 22px;

    background:
        var(--white);

    border:
        1px solid var(--border);

    border-radius:
        var(--radius);

    box-shadow:
        0 5px 20px rgba(25,55,90,.035);

    transition:
        var(--transition);
}


.service-card:hover {

    transform:
        translateY(-6px);

    border-color:
        rgba(7,91,216,.18);

    box-shadow:
        var(--shadow-hover);
}


.service-icon {

    width:
        52px;

    height:
        52px;

    display:
        flex;

    align-items:
        center;

    justify-content:
        center;

    margin-bottom:
        20px;

    color:
        var(--blue);

    background:
        #eef5ff;

    border-radius:
        10px;
}


.service-icon svg {

    width:
        25px;

    height:
        25px;
}


.service-card h3 {

    margin-bottom:
        10px;

    color:
        var(--blue-dark);

    font-size:
        17px;

    line-height:
        1.3;
}


.service-card p {

    margin-bottom:
        18px;

    color:
        var(--text-light);

    font-size:
        13px;

    line-height:
        1.65;
}


.service-card > a {

    display:
        inline-flex;

    align-items:
        center;

    gap:
        6px;

    margin-top:
        auto;

    color:
        var(--blue);

    font-size:
        12px;

    font-weight:
        650;
}


.service-card > a svg {

    width:
        15px;

    height:
        15px;

    transition:
        transform .2s ease;
}


.service-card > a:hover svg {

    transform:
        translateX(4px);
}


/* =========================================================
   16. NOTICIAS + TESTIMONIOS
========================================================= */

.news-testimonials {

    padding:
        90px 0;

    background:
        var(--white);
}


.news-testimonials-container {

    display:
        grid;

    grid-template-columns:
        1.25fr .75fr;

    gap:
        70px;
}


.section-top {

    display:
        flex;

    align-items:
        center;

    justify-content:
        space-between;

    gap:
        20px;

    margin-bottom:
        28px;

    padding-bottom:
        15px;

    border-bottom:
        1px solid var(--border);
}


.section-top h2 {

    color:
        var(--blue-dark);

    font-size:
        27px;
}


.section-top > a {

    display:
        inline-flex;

    align-items:
        center;

    gap:
        6px;

    color:
        var(--blue);

    font-size:
        12px;

    font-weight:
        650;
}


.section-top > a svg {

    width:
        15px;

    height:
        15px;
}


/* =========================================================
   17. NOTICIAS
========================================================= */

.news-list {

    display:
        flex;

    flex-direction:
        column;

    gap:
        16px;
}


.news-item {

    display:
        grid;

    grid-template-columns:
        145px 1fr;

    gap:
        18px;

    padding-bottom:
        16px;

    border-bottom:
        1px solid var(--border);
}


.news-item:last-child {

    padding-bottom:
        0;

    border-bottom:
        0;
}


.news-image {

    min-height:
        100px;

    display:
        flex;

    align-items:
        center;

    justify-content:
        center;

    color:
        var(--blue);

    background:
        #eef5ff;

    border-radius:
        7px;
}


.news-image svg {

    width:
        28px;

    height:
        28px;
}


.news-content time {

    display:
        block;

    margin-bottom:
        5px;

    color:
        var(--blue);

    font-size:
        10px;

    font-weight:
        650;
}


.news-content h3 {

    margin-bottom:
        6px;

    color:
        var(--blue-dark);

    font-size:
        16px;

    line-height:
        1.3;
}


.news-content p {

    color:
        var(--text-light);

    font-size:
        12px;

    line-height:
        1.5;
}


/* =========================================================
   18. TESTIMONIOS
========================================================= */

.testimonial-card {

    position:
        relative;

    min-height:
        335px;

    padding:
        32px;

    background:
        var(--background);

    border:
        1px solid var(--border);

    border-radius:
        10px;
}


.quote-icon {

    width:
        42px;

    height:
        42px;

    display:
        flex;

    align-items:
        center;

    justify-content:
        center;

    margin-bottom:
        20px;

    color:
        var(--blue);

    background:
        #eaf3ff;

    border-radius:
        50%;
}


.quote-icon svg {

    width:
        20px;

    height:
        20px;
}


.testimonial-card blockquote {

    margin-bottom:
        25px;

    color:
        var(--text);

    font-size:
        15px;

    line-height:
        1.75;
}


.testimonial-author {

    display:
        flex;

    align-items:
        center;

    gap:
        11px;
}


.author-avatar {

    width:
        42px;

    height:
        42px;

    display:
        flex;

    align-items:
        center;

    justify-content:
        center;

    color:
        var(--blue);

    background:
        #dceaff;

    border-radius:
        50%;
}


.author-avatar svg {

    width:
        20px;

    height:
        20px;
}


.testimonial-author strong {

    display:
        block;

    color:
        var(--blue-dark);

    font-size:
        13px;
}


.testimonial-author span {

    display:
        block;

    margin-top:
        2px;

    color:
        var(--text-light);

    font-size:
        10px;
}


.testimonial-dots {

    position:
        absolute;

    left:
        32px;

    bottom:
        25px;

    display:
        flex;

    gap:
        6px;
}


.testimonial-dots span {

    width:
        7px;

    height:
        7px;

    background:
        #c9d5e3;

    border-radius:
        50%;
}


.testimonial-dots span.active {

    width:
        20px;

    background:
        var(--blue);

    border-radius:
        8px;
}


/* =========================================================
   19. CLIENTES
========================================================= */

.clients-section {

    background:
        var(--background);
}


.clients-slider {

    display:
        flex;

    align-items:
        center;

    gap:
        15px;

    width:
        100%;
}


.clients-list {

    min-width:
        0;

    flex:
        1;

    display:
        grid;

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

    background:
        var(--white);

    border:
        1px solid var(--border);

    border-radius:
        9px;

    overflow:
        hidden;

    box-shadow:
        var(--shadow);
}


.client-logo {

    min-height:
        125px;

    display:
        flex;

    align-items:
        center;

    justify-content:
        center;

    gap:
        12px;

    padding:
        20px;

    color:
        var(--blue-dark);

    border-right:
        1px solid var(--border);

    border-bottom:
        1px solid var(--border);

    transition:
        var(--transition);
}


.client-logo:nth-child(3n) {

    border-right:
        0;
}


.client-logo:nth-child(n+4) {

    border-bottom:
        0;
}


.client-logo:hover {

    background:
        #f8fbff;
}


.client-logo > svg {

    width:
        34px;

    height:
        34px;

    flex-shrink:
        0;

    color:
        var(--blue);

    stroke-width:
        1.7;
}


.client-logo > span {

    display:
        flex;


    flex-direction:
        column;

    color:
        var(--blue-dark);

    font-size:
        14px;

    font-weight:
        700;

    line-height:
        1.25;
}


.client-logo small {

    margin-top:
        4px;

    color:
        var(--text-light);

    font-size:
        8px;

    font-weight:
        500;

    line-height:
        1.3;
}


.client-arrow {

    width:
        42px;

    height:
        42px;

    display:
        flex;

    align-items:
        center;

    justify-content:
        center;

    flex-shrink:
        0;

    color:
        var(--blue);

    background:
        var(--white);

    border:
        1px solid var(--border);

    border-radius:
        50%;

    box-shadow:
        0 4px 14px rgba(20,50,90,.05);

    transition:
        var(--transition);
}


.client-arrow:hover {

    color:
        var(--white);

    background:
        var(--blue);

    border-color:
        var(--blue);
}


.client-arrow svg {

    width:
        18px;

    height:
        18px;
}


/* =========================================================
   20. FOOTER
========================================================= */

.footer {

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

    background:
        linear-gradient(
            135deg,
            #041f46 0%,
            #06356f 55%,
            #052957 100%
        );
}


.footer-container {

    display:
        grid;

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

    gap:
        45px;

    padding-top:
        65px;

    padding-bottom:
        55px;
}


.footer-brand {

    max-width:
        280px;
}


.footer-logo {

    margin-bottom:
        18px;
}


.footer-logo .logo-symbol {

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

    box-shadow:
        none;
}


.footer-logo .logo-text strong {

    color:
        var(--white);
}


.footer-logo .logo-text small {

    color:
        rgba(255,255,255,.55);
}


.footer-brand > p {

    margin-bottom:
        22px;

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

    font-size:
        12px;

    line-height:
        1.7;
}


.social-links {

    display:
        flex;

    gap:
        8px;
}


.social-links a {

    width:
        35px;

    height:
        35px;

    display:
        flex;

    align-items:
        center;

    justify-content:
        center;

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

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

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

    border-radius:
        6px;

    transition:
        var(--transition);
}


.social-links a:hover {

    color:
        var(--white);

    background:
        var(--blue);

    border-color:
        var(--blue);

    transform:
        translateY(-2px);
}


.social-links svg {

    width:
        17px;

    height:
        17px;
}


/* =========================================================
   21. FOOTER COLUMNAS
========================================================= */

.footer-column h3 {

    margin-bottom:
        18px;

    color:
        var(--white);

    font-size:
        14px;
}


.footer-column ul {

    display:
        flex;

    flex-direction:
        column;

    gap:
        9px;
}


.footer-column li a {

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

    font-size:
        11px;

    transition:
        var(--transition);
}


.footer-column li a:hover {

    color:
        var(--white);

    padding-left:
        3px;
}


.contact-item {

    display:
        flex;

    align-items:
        flex-start;

    gap:
        9px;

    margin-bottom:
        14px;

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

    font-size:
        11px;
}


.contact-item svg {

    width:
        16px;

    height:
        16px;

    flex-shrink:
        0;

    color:
        #65aaff;
}


/* =========================================================
   22. FOOTER INFERIOR
========================================================= */

.footer-bottom {

    border-top:
        1px solid rgba(255,255,255,.10);
}


.footer-bottom-container {

    min-height:
        62px;

    display:
        flex;

    align-items:
        center;

    justify-content:
        space-between;

    gap:
        20px;
}


.footer-bottom p,
.footer-bottom a {

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

    font-size:
        10px;
}


.footer-bottom-container > div {

    display:
        flex;

    align-items:
        center;

    gap:
        9px;
}


.footer-bottom a:hover {

    color:
        var(--white);
}


/* =========================================================
   23. RESPONSIVE — TABLET
========================================================= */

@media (max-width:1100px) {

    .main-nav > ul {

        gap:
            0;
    }


    .nav-item > a {

        padding:
            0 9px;

        font-size:
            13px;
    }


    .header-button {

        padding:
            0 13px;
    }


    .hero-container {

        gap:
            35px;
    }


    .services-grid {

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


    .footer-container {

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


    .footer-brand {

        grid-column:
            span 3;

        max-width:
            500px;
    }
}


/* =========================================================
   24. RESPONSIVE — TABLET PEQUEÑA
========================================================= */
@media (max-width:900px) {
.header { height: 72px;}
.header-button {display: none;}
    .mobile-menu-btn {

        display:
            flex;

        order:
            3;
    }


    .main-nav {

        position:
            absolute;

        top:
            72px;

        left:
            20px;

        right:
            20px;

        display:
            none;

        margin:
            0;

        padding:
            10px;

        background:
            var(--white);

        border:
            1px solid var(--border);

        border-radius:
            9px;

        box-shadow:
            0 15px 35px rgba(20,50,90,.13);
    }


    .main-nav.open {

        display:
            block;
    }


    .main-nav > ul {

        flex-direction:
            column;

        align-items:
            stretch;
    }


    .nav-item > a {

        justify-content:
            space-between;

        width:
            100%;

        padding:
            12px;
    }


    .submenu {

        position:
            static;

        width:
            100%;

        padding:
            3px 0 3px 12px;

        border:
            0;

        box-shadow:
            none;

        opacity:
            1;

        visibility:
            visible;

        transform:
            none;

        display:
            none;
    }


    .has-submenu.open > .submenu {

        display:
            block;
    }


    .hero {

        min-height:
            auto;
    }


    .hero-container {

        min-height:
            auto;

        grid-template-columns:
            1fr;

        padding-top:
            75px;

        padding-bottom:
            75px;

        text-align:
            center;
    }


    .hero-content {

        max-width:
            700px;

        margin:
            0 auto;
    }


    .hero-line {

        margin:
            20px auto;
    }


    .hero-content p {

        margin-left:
            auto;

        margin-right:
            auto;
    }


    .hero-image {

        margin-top:
            10px;
    }


    .about-container {

        grid-template-columns:
            1fr;

        gap:
            45px;
    }


    .about-content {

        max-width:
            700px;
    }


    .news-testimonials-container {

        grid-template-columns:
            1fr;

        gap:
            60px;
    }


    .clients-list {

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


    .client-logo:nth-child(3n) {

        border-right:
            1px solid var(--border);
    }


    .client-logo:nth-child(2n) {

        border-right:
            0;
    }


    .client-logo:nth-child(n+4) {

        border-bottom:
            1px solid var(--border);
    }


    .client-logo:nth-child(n+5) {

        border-bottom:
            0;
    }
}


/* =========================================================
   25. RESPONSIVE — MOBILE
========================================================= */

@media (max-width:700px) {
.container { width: calc(100% - 30px);}
.benefits-container { grid-template-columns: repeat(2, 1fr); padding: 15px 0;}
.benefit-item {padding: 13px 10px; border-right: 0;  border-bottom: 1px solid var(--border);}
.benefit-item:nth-child(3), .benefit-item:nth-child(4) {border-bottom: 0;}
.services-section,
.clients-section,
about-section,
.news-testimonials {

        padding:
            65px 0;
    }


    .services-grid {

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

        gap:
            14px;
    }


    .service-card {

        min-height:
            260px;

        padding:
            23px 18px;
    }


    .footer-container {

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

        gap:
            35px 25px;

        padding-top:
            50px;

        padding-bottom:
            40px;
    }


    .footer-brand {

        grid-column:
            span 2;
    }


    .footer-bottom-container {

        min-height:
            auto;

        padding:
            20px 0;

        flex-direction:
            column;

        text-align:
            center;
    }
}


/* =========================================================
   26. RESPONSIVE — MOBILE PEQUEÑO
========================================================= */

@media (max-width:500px) {

    .hero-container {

        padding-top:
            55px;

        padding-bottom:
            60px;
    }


    .hero h1 {

        font-size:
            36px;

        letter-spacing:
            -1.2px;
    }


    .hero-content p {

        font-size:
            14px;
    }


    .hero-image {

        display:
            none;
    }


    .hero-arrow {

        width:
            35px;

        height:
            35px;
    }


    .hero-prev {

        left:
            8px;
    }


    .hero-next {

        right:
            8px;
    }


    .benefits-container {

        grid-template-columns:
            1fr;
    }


    .benefit-item,
    .benefit-item:nth-child(3),
    .benefit-item:nth-child(4) {

        border-bottom:
            1px solid var(--border);
    }


    .benefit-item:last-child {

        border-bottom:
            0;
    }


    .services-grid {

        grid-template-columns:
            1fr;
    }


    .service-card {

        min-height:
            auto;
    }


    .section-heading h2 {

        font-size:
            29px;
    }


    .about-content h2 {

        font-size:
            31px;
    }


    .about-image,
    .about-image-placeholder {

        min-height:
            300px;
    }


    .news-item {

        grid-template-columns:
            100px 1fr;

        gap:
            12px;
    }


    .news-image {

        min-height:
            85px;
    }


    .news-content h3 {

        font-size:
            14px;
    }


    .news-content p {

        font-size:
            11px;
    }


    .testimonial-card {

        min-height:
            360px;

        padding:
            25px;
    }


    .clients-slider {

        gap:
            7px;
    }


    .clients-list {

        grid-template-columns:
            1fr;
    }


    .client-logo,
    .client-logo:nth-child(n) {

        min-height:
            100px;

        border-right:
            0;

        border-bottom:
            1px solid var(--border);
    }


    .client-logo:last-child {

        border-bottom:
            0;
    }


    .client-arrow {

        width:
            35px;

        height:
            35px;
    }


    .footer-container {

        grid-template-columns:
            1fr;
    }


    .footer-brand {

        grid-column:
            auto;
    }
}


/* =========================================================
   27. ACCESIBILIDAD
========================================================= */
a:focus-visible,
button:focus-visible { outline: 2px solid #62adff; outline-offset: 3px;}
::selection {color: var(--white); background: var(--blue);}
/* =========================================================
   FIN AWoRDS CSS
========================================================= */

/* =========================================================
   FASE 10.4 - MENÚ MÓVIL
========================================================= */
.mobile-menu-btn { display: none; border: 0; background: transparent; cursor: pointer; padding: 8px; align-items: center; justify-content: center;}
.mobile-menu-btn svg {width: 28px; height: 28px;}
/* =========================================================
   TABLET / MÓVIL
========================================================= */

@media (max-width: 900px) {

    .header-container {
        position: relative;
    }

    .mobile-menu-btn {
        display: flex;
        margin-left: auto;
        z-index: 1002;
    }

    .header-button {
        display: none;
    }

    .main-nav {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        width: 100%;
        z-index: 1001;
    }

    .main-nav.mobile-open {
        display: block;
    }

    .main-nav > ul {
        display: flex;
        flex-direction: column;
        width: 100%;
        margin: 0;
        padding: 10px 0;
    }

    .main-nav > ul > li {
        width: 100%;
    }

    .main-nav > ul > li > a {
        display: flex;
        align-items: center;
        justify-content: space-between;
        width: 100%;
    }


/* =====================================================
       SUBMENÚS MÓVILES
====================================================== */
.main-nav .submenu { display: none; position: static; width: 100%;}
.main-nav .has-submenu.open > .submenu { display: block;}
.main-nav .submenu li { width: 100%;}
.main-nav .submenu a {display: flex; align-items: center; width: 100%; }}
/* =========================================================
   MÓVIL PEQUEÑO
========================================================= */
@media (max-width: 600px) {
.mobile-menu-btn {padding: 6px;}
.mobile-menu-btn svg { width: 26px; height: 26px;}
.main-nav > ul {padding: 8px 0;}}


.aw-alert {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 16px;
    margin-bottom: 22px;
    border-radius: 12px;
    font-size: 14px;
    line-height: 1.5;
}

.aw-alert svg {
    width: 20px;
    flex-shrink: 0;
}

.aw-alert-success {
    background: #ecfdf5;
    color: #047857;
    border: 1px solid #a7f3d0;
}

.aw-alert-error {
    background: #fef2f2;
    color: #b91c1c;
    border: 1px solid #fecaca;
}



/* ===========================================================================================================================================================================================================
  																				 QUIÉNES SOMOS - AWORDS
=========================================================================================================================================================================================================== */
.about-awords {position: relative; padding: 110px 0; background: radial-gradient(circle at 10% 20%, rgba(0, 102, 255, .07), transparent 30%), radial-gradient(circle at 90% 80%, rgba(0, 102, 255, .06), transparent 30% ), #f8fafc;overflow: hidden;}
.about-container { width: min(1300px, calc(100% - 40px)); margin: 0 auto; display: grid; grid-template-columns: 1fr 0.9fr; gap: 80px; align-items: center;}
.about-content { max-width: 650px;}
.section-tag { display: inline-flex; align-items: center; gap: 8px; font-size: 13px; font-weight: 700; letter-spacing: 1.5px; color: var(--blue); margin-bottom: 20px;}
.section-tag svg { width: 18px; height: 18px;}
.about-content h2 {margin: 0 0 25px; font-size: clamp(36px, 4vw, 54px); line-height: 1.08; font-weight: 800; letter-spacing: -1.5px; color: var(--blue-dark);}
.about-content h2 span { display: block; color: var(--blue);}
.about-content p {margin: 0 0 18px; color: #64748b; font-size: 16px; line-height: 1.8;}
.about-content .about-lead {font-size: 18px; line-height: 1.75; color: #475569;}
.about-content strong {color: var(--blue-dark);}
.about-highlights {display: grid; grid-template-columns: 1fr 1fr; gap: 20px; margin-top: 35px;}
.about-highlight {display: flex; gap: 14px; padding: 20px; background: #f8fbff; border: 1px solid #e7eef7; border-radius: 16px; transition: transform .3s ease, box-shadow .3s ease, border-color .3s ease;}
.about-highlight:hover {transform: translateY(-5px); border-color: #d7e5f5; box-shadow: 0 15px 35px rgba(15, 45, 80, .08);}
.highlight-icon {width: 44px; height: 44px; min-width: 44px; display: flex; align-items: center; justify-content: center; border-radius: 12px; background: var(--blue); color: white;}
.highlight-icon svg {width: 21px; height: 21px;}
.about-highlight strong {display: block; font-size: 15px; margin-bottom: 5px; color: var(--blue-dark);}
.about-highlight span {display: block; font-size: 13px; line-height: 1.55; color: #64748b;}
.about-visual { position: relative;}
.about-image-wrapper { position: relative; width: 100%; min-height: 520px; border-radius: 30px; overflow: hidden; box-shadow:  0 30px 70px rgba(15, 45, 80, .16);}
.about-image-wrapper img {width: 100%; height: 100%; min-height: 520px; display: block; object-fit: cover; transition: transform .7s ease;}
.about-image-wrapper:hover img {transform: scale(1.04);}
.about-image-overlay {position: absolute; inset: 0; background: linear-gradient(rgba(5, 30, 60, .02) 20%, rgba(5, 30, 60, .55) 100%);}
.about-floating-card {position: absolute; left: 30px; bottom: 30px; display: flex; align-items: center; gap: 14px; padding: 18px 22px; background: rgba(255, 255, 255, .96); border-radius: 16px;
box-shadow: 0 20px 45px rgba(0, 0, 0, .18); backdrop-filter: blur(10px);}
.floating-icon {width: 46px; height: 46px; display: flex; align-items: center; justify-content: center; background: var(--blue); color: white; border-radius: 12px;}
.floating-icon svg {width: 22px; height: 22px;}
.about-floating-card strong {display: block; font-size: 14px; color: var(--blue-dark); margin-bottom: 4px;}
.about-floating-card span {display: block; font-size: 12px; color: #64748b;}
.about-cards-container { width: min(1300px, calc(100% - 40px)); margin: 90px auto 0; display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px;}
.about-info-card {position: relative; padding: 35px; background: #ffffff; border: 1px solid #e6edf5; border-radius: 22px; box-shadow: 0 10px 30px rgba(15, 45, 80, .05); overflow: hidden;
transition: transform .3s ease, box-shadow .3s ease, border-color .3s ease;}
.about-info-card::after { content: ""; position: absolute; top: 0; left: 0; width: 100%; height: 4px; background: var(--blue); transform: scaleX(0); transform-origin: left; transition: transform .3s ease;}
.about-info-card:hover {transform: translateY(-8px); border-color: #d7e5f5; box-shadow: 0 25px 55px rgba(15, 45, 80, .10);}
.about-info-card:hover::after {transform: scaleX(1);}
.about-card-icon {width: 58px; height: 58px; display: flex; align-items: center; justify-content: center; margin-bottom: 25px; border-radius: 16px; background: #eef5ff; color: var(--blue);}
.about-card-icon svg {width: 27px; height: 27px;}
.about-card-content > span { display: block; margin-bottom: 9px; font-size: 12px; font-weight: 800; letter-spacing: 1.5px; color: var(--blue);}
.about-card-content h3 { margin: 0 0 15px; font-size: 23px; line-height: 1.25; color: var(--blue-dark);}
.about-card-content p {margin: 0; font-size: 14px; line-height: 1.75; color: #64748b;}
@media (max-width: 1000px) {
.about-container {grid-template-columns: 1fr; gap: 50px;}
.about-content { max-width: 100%;}
.about-visual { max-width: 700px; width: 100%; margin: auto;}
.about-cards-container {grid-template-columns: 1fr; max-width: 700px;}}
@media (max-width: 700px) {
.about-awords { padding: 75px 0;}
.about-container,
.about-cards-container { width: min(100% - 30px, 600px);}
.about-content h2 { font-size: 38px;}
.about-content .about-lead {font-size: 16px;}
.about-highlights {grid-template-columns: 1fr;}
.about-image-wrapper {min-height: 400px; border-radius: 22px;}
.about-image-wrapper img { min-height: 400px;}
.about-floating-card {left: 15px; right: 15px; bottom: 15px;}
.about-info-card {padding: 28px;}}
/* ===========================================================================================================================================================================================================
  																				END QUIÉNES SOMOS - AWORDS
=========================================================================================================================================================================================================== */




/* ===========================================================================================================================================================================================================
   																						DESARROLLO DE SOFTWARE - AWORDS
=========================================================================================================================================================================================================== */
.software-section {position: relative; padding: 110px 0; background: radial-gradient(circle at 10% 20%, rgba(0, 102, 255, .07), transparent 30%), radial-gradient(circle at 90% 80%, rgba(0, 102, 255, .06), transparent 30% ), #f8fafc; overflow: hidden;}
.software-container {width: min(1300px, 92%); margin: 0 auto; display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center;}
.software-content {max-width: 620px;}
.software-tag {display: inline-flex; align-items: center; gap: 9px; padding: 8px 15px; border-radius: 30px; background: #eef5ff; color: var(--blue); font-size: 14px; font-weight: 700; letter-spacing: .3px;
margin-bottom: 22px;}
.software-tag svg {width: 17px; height: 17px;}
.software-content h2 {margin: 0 0 22px; font-size: clamp(38px, 4vw, 58px); line-height: 1.08; font-weight: 800; letter-spacing: -1.8px; color: var(--blue-dark);}
.software-content h2 span {display: block; color: var(--blue);}
.software-lead {font-size: 19px; line-height: 1.75; color: #344054; margin-bottom: 17px;}
.software-content > p:not(.software-lead) { font-size: 16px; line-height: 1.75; color: #667085; margin-bottom: 30px;}
.software-features {display: flex; flex-direction: column; gap: 17px; margin-bottom: 34px;}
.software-feature {display: flex; align-items: center; gap: 15px;}
.feature-icon {width: 45px; height: 45px; flex-shrink: 0; display: flex; align-items: center; justify-content: center; border-radius: 12px; background: #eef5ff; color: var(--blue);}
.feature-icon svg {width: 21px; height: 21px;}
.software-feature strong {display: block; color: var(--blue-dark); font-size: 15px; margin-bottom: 3px;}
.software-feature span {display: block; color: #667085; font-size: 14px;}
.software-actions {display: flex; align-items: center; gap: 14px; flex-wrap: wrap;}
.btn-software-primary,
.btn-software-secondary {display: inline-flex; align-items: center; justify-content: center; gap: 10px; min-height: 50px; padding: 0 23px; border-radius: 10px; text-decoration: none; font-size: 15px;
font-weight: 700; transition: transform .25s ease, box-shadow .25s ease, background .25s ease;}
.btn-software-primary {background: var(--blue); color: #ffffff; box-shadow: 0 10px 25px rgba(0, 91, 187, .18);}
.btn-software-primary:hover {transform: translateY(-3px); box-shadow: 0 15px 30px rgba(0, 91, 187, .25);}
.btn-software-primary svg {width: 18px;}
.btn-software-secondary {color: var(--blue-dark); border: 1px solid #dbe4f0; background: #ffffff;}
.btn-software-secondary:hover {background: #f7faff; border-color: #c9d9ee;}
.software-visual {position: relative;}
.software-image-wrapper {position: relative; width:100%; height: 480px; border-radius: 25px; overflow: hidden; background: #edf4fc; box-shadow: 0 25px 60px rgba(15, 40, 70, .13);}
.software-image-wrapper::after {content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(7, 31, 61, 0) 50%, rgba(7, 31, 61, .45) 100%); pointer-events: none;}
.software-image-wrapper img {width: 100%; height: 100%; display: block; object-fit: cover; transition: transform .7s ease;}
.software-image-wrapper:hover img {transform: scale(1.04);}
.software-image-badge { position: absolute; left: 25px; bottom: 25px; z-index: 2; display: flex; align-items: center; gap: 12px; padding: 13px 17px; background: rgba(255,255,255,.94); backdrop-filter: blur(12px); border-radius: 14px; box-shadow: 0 12px 30px rgba(0,0,0,.12);}
.software-image-badge > svg {width: 27px; height: 27px; color: var(--blue);}
.software-image-badge strong {display: block; color: var(--blue-dark); font-size: 14px;}
.software-image-badge span {display: block; color: #667085; font-size: 12px; margin-top: 2px;}
.software-cards {display: grid; grid-template-columns: repeat(3, 1fr); gap: 13px; margin-top: 16px;}
.software-card {padding: 20px 18px; background: #ffffff; border: 1px solid #e7edf5; border-radius: 15px; box-shadow: 0 8px 25px rgba(15, 40, 70, .05); transition: transform .25s ease, box-shadow .25s ease,
border-color .25s ease;}
.software-card:hover {transform: translateY(-6px); border-color: #d4e2f2; box-shadow: 0 16px 35px rgba(15, 40, 70, .10);}
.software-card-icon { width: 39px; height: 39px; display: flex; align-items: center; justify-content: center; border-radius: 10px; background: #eef5ff; color: var(--blue); margin-bottom: 13px;}
.software-card-icon svg {width: 19px; height: 19px;}
.software-card h3 {margin: 0 0 8px; font-size: 15px; line-height: 1.3; color: var(--blue-dark);}
.software-card p {margin: 0; font-size: 13px; line-height: 1.55; color: #667085;}
@media (max-width: 1050px) {
.software-container {grid-template-columns: 1fr; gap: 55px;}
.software-content {max-width: 800px;}
.software-image-wrapper { height: 450px;}}
@media (max-width: 700px) {
.software-section {padding: 75px 0;}
.software-container {width: 90%; gap: 40px;}
.software-content h2 {font-size: 38px; letter-spacing: -1px;}
.software-lead {font-size: 17px;}
.software-image-wrapper {height: 350px; border-radius: 20px;}
.software-cards {grid-template-columns: 1fr;}
.software-card {display: flex; align-items: flex-start; gap: 13px;}
.software-card-icon {flex-shrink: 0; margin-bottom: 0;}
.software-actions {width: 100%; flex-direction: column; align-items: stretch;}
.btn-software-primary,.btn-software-secondary {width: 100%;}}
@media (max-width: 450px) {
.software-image-wrapper {height: 300px;}
.software-image-badge {left: 15px; bottom: 15px; right: 15px;}}
/* ===========================================================================================================================================================================================================
   																					END	DESARROLLO DE SOFTWARE - AWORDS
=========================================================================================================================================================================================================== */





/* ========================================================================================================================================================================================================
     																					ESTILOS SOLICITAR SERVICIOS AWORDS
========================================================================================================================================================================================================= */

.aw-contact {position: relative; padding: 110px 20px; background: radial-gradient(circle at 10% 20%, rgba(0, 102, 255, .07), transparent 30%), radial-gradient(circle at 90% 80%, rgba(0, 102, 255, .06), transparent 30% ), #f8fafc; overflow: hidden;}
.aw-contact-container {width: 100%; max-width: 1300px; margin: auto;}
.aw-contact-header {max-width: 760px; margin: 0 auto 60px; text-align: center;}
.aw-section-tag {display: inline-flex; align-items: center; gap: 8px; padding: 8px 14px; border-radius: 50px; background: rgba(0, 102, 255, .08); color: #0066ff; font-size: 13px; font-weight: 700;    letter-spacing: .3px;}
.aw-section-tag svg {width: 17px; height: 17px;}
.aw-contact-header h2 {margin: 20px 0 15px; font-size: clamp(36px, 5vw, 58px); line-height: 1.05; letter-spacing: -2px; color: #111827;}
.aw-contact-header h2 span {color: #0066ff;}
.aw-contact-header p {margin: 0 auto; max-width: 680px; color: #64748b; font-size: 17px; line-height: 1.7;}
.aw-contact-grid {display: grid; grid-template-columns: 1.05fr .95fr; gap: 40px; align-items: start;}
.aw-contact-form-box {background: #ffffff; border: 1px solid #e5eaf0; border-radius: 28px; padding: 38px; box-shadow: 0 25px 70px rgba(15, 23, 42, .08);}
.aw-form-title {display: flex; align-items: center; gap: 16px; margin-bottom: 32px;}
.aw-form-icon {width: 52px; height: 52px; border-radius: 15px; display: flex; align-items: center;justify-content: center; background: #0066ff; color: #fff; flex-shrink: 0;}
.aw-form-icon svg {width: 23px;}
.aw-form-title h3 {margin: 0 0 4px; color: #111827; font-size: 22px;}
.aw-form-title p {margin: 0; color: #64748b; font-size: 14px;}
.aw-form-row {display: grid; grid-template-columns: 1fr 1fr; gap: 18px;}
.aw-field {margin-bottom: 20px;}
.aw-field label {display: block; margin-bottom: 8px; color: #334155; font-size: 13px; font-weight: 700;}
.aw-input,.aw-textarea {position: relative;}
.aw-input svg,.aw-textarea svg {position: absolute; top: 50%; left: 15px; transform: translateY(-50%); width: 18px; height: 18px; color: #94a3b8; pointer-events: none;}
.aw-textarea svg {top: 20px; transform: none;}
.aw-input input,
.aw-input select,
.aw-textarea textarea {width: 100%; border: 1px solid #e2e8f0; background: #f8fafc; border-radius: 12px; padding: 14px 15px 14px 45px; font-family: inherit; font-size: 14px; color: #1e293b;
outline: none; transition: .25s ease; box-sizing: border-box;}
.aw-textarea textarea {padding-left: 45px; resize: vertical; min-height: 130px;}
.aw-input input:focus,
.aw-input select:focus,
.aw-textarea textarea:focus {background: #fff; border-color: #0066ff; box-shadow: 0 0 0 4px rgba(0, 102, 255, .08);}
.aw-input input:focus + svg {color: #0066ff;}
.aw-check {display: flex; align-items: flex-start; gap: 10px; margin: 5px 0 22px; color: #64748b; font-size: 12px; line-height: 1.5;}
.aw-check input {margin-top: 3px; accent-color: #0066ff;}
.aw-contact-btn {width: 100%; border: 0; border-radius: 13px; padding: 16px 22px; display: flex; justify-content: center; align-items: center; gap: 10px; background: #0066ff; color: #fff; font-family: inherit; font-size: 15px; font-weight: 700; cursor: pointer; transition: .3s ease;}
.aw-contact-btn svg {width: 18px; transition: .3s ease;}
.aw-contact-btn:hover {background: #0052cc; transform: translateY(-2px); box-shadow: 0 15px 30px rgba(0, 102, 255, .22);}
.aw-contact-btn:hover svg {transform: translateX(4px);}
.aw-contact-image {position: relative; height: 285px; border-radius: 25px; overflow: hidden; margin-bottom: 28px;}
.aw-contact-image img {width: 100%; height: 100%; object-fit: cover; display: block; transition: transform .6s ease;}
.aw-contact-image:hover img {transform: scale(1.05);}
.aw-image-overlay {position: absolute; inset: 0; background:linear-gradient(180deg, rgba(2, 6, 23, .05), rgba(2, 6, 23, .78));}
.aw-image-content {position: absolute; left: 28px; right: 28px; bottom: 25px; color: #fff;}
.aw-image-content span { display: inline-flex; align-items: center; gap: 7px; font-size: 12px; font-weight: 700; margin-bottom: 10px;}
.aw-image-content span svg {width: 16px;}
.aw-image-content h3 {margin: 0; max-width: 440px; font-size: 27px; line-height: 1.2;}
.aw-contact-info-text {margin-bottom: 25px;}
.aw-info-label {display: inline-flex; align-items: center; gap: 7px; color: #0066ff; font-size: 13px; font-weight: 700;}
.aw-info-label svg {width: 17px;}
.aw-contact-info-text h3 { margin: 12px 0; font-size: 28px; line-height: 1.25; color: #111827;}
.aw-contact-info-text h3 strong {color: #0066ff;}
.aw-contact-info-text p {margin: 0; color: #64748b; font-size: 15px; line-height: 1.7;}
.aw-contact-cards {display: grid; grid-template-columns: 1fr 1fr; gap: 12px;}
.aw-contact-card {display: flex; align-items: center; gap: 13px; padding: 16px; background: #fff; border: 1px solid #e5eaf0; border-radius: 15px; transition: .3s ease;}
.aw-contact-card:hover {transform: translateY(-3px); border-color: rgba(0, 102, 255, .2); box-shadow: 0 12px 30px rgba(15, 23, 42, .07);}
.aw-card-icon {width: 40px; height: 40px; flex-shrink: 0; border-radius: 11px; display: flex; align-items: center; justify-content: center; background: rgba(0, 102, 255, .08); color: #0066ff;}
.aw-card-icon svg {width: 18px;}
.aw-contact-card span {display: block; margin-bottom: 4px; color: #94a3b8; font-size: 11px;}
.aw-contact-card a,.aw-contact-card strong {color: #334155; font-size: 13px; font-weight: 700; text-decoration: none;}
.aw-contact-card a:hover {color: #0066ff;}
.aw-contact-social {display: flex; align-items: center; justify-content: space-between; margin-top: 25px; padding-top: 22px; border-top: 1px solid #e2e8f0;}
.aw-contact-social > span {color: #64748b; font-size: 13px; font-weight: 600;}
.aw-social-links {display: flex; gap: 8px;}
.aw-social-links a {width: 38px; height: 38px; border-radius: 10px; display: flex; align-items: center; justify-content: center; background: #fff; border: 1px solid #e2e8f0; color: #475569;
transition: .25s ease;}
.aw-social-links a:hover {background: #0066ff; color: #fff; border-color: #0066ff; transform: translateY(-3px);}
.aw-social-links svg {width: 17px;}
.aw-contact-bottom {margin-top: 45px; padding: 22px 25px; border-radius: 18px; background: #0f172a; display: flex; align-items: center; justify-content: space-between; gap: 25px; color: #fff;}
.aw-contact-bottom > div {display: flex; align-items: center; gap: 15px;}
.aw-contact-bottom > div > svg { width: 28px; color: #60a5fa;}
.aw-contact-bottom strong {display: block; margin-bottom: 4px; font-size: 15px;}
.aw-contact-bottom span {color: #94a3b8; font-size: 13px;}
.aw-contact-bottom > a {display: inline-flex; align-items: center; gap: 8px; padding: 11px 17px; border-radius: 10px; background: #0066ff; color: #fff; text-decoration: none; font-size: 13px; font-weight: 700; white-space: nowrap; transition: .25s ease;}
.aw-contact-bottom > a:hover {background: #0052cc; transform: translateY(-2px);}
.aw-contact-bottom > a svg {width: 16px;}
@media (max-width: 1000px) {
.aw-contact-grid { grid-template-columns: 1fr;}
.aw-contact-info { max-width: 800px; width: 100%; margin: auto;}}
@media (max-width: 650px) {
.aw-contact { padding: 75px 15px;}
.aw-contact-header { margin-bottom: 40px;}
.aw-contact-header h2 {letter-spacing: -1px;}
.aw-contact-form-box {padding: 24px 18px; border-radius: 20px;}
.aw-form-row {grid-template-columns: 1fr; gap: 0;}
.aw-contact-cards {grid-template-columns: 1fr;}
.aw-contact-image {height: 240px; border-radius: 20px;}
.aw-image-content h3 {font-size: 22px;}
.aw-contact-bottom {align-items: flex-start; flex-direction: column;}
.aw-contact-bottom > a {width: 100%; justify-content: center; box-sizing: border-box;}}

/* ========================================================================================================================================================================================================
     																					END ESTILOS SOLICITAR SERVICIOS AWORDS
========================================================================================================================================================================================================= */