/* This is an empty scss file for your custom styles - Please add your super duper awesome mega design styles here */

@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;500;700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Quicksand:wght@400;500;700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@400;500;700&display=swap');

/** BASE COLORS **/

p {
    font-family: 'Roboto', sans-serif;
    font-display: swap;
}

.bg-orange {
    background: #F18D24;
}

.bg-blue {
    background: #00519F;
}

.bg-grey {
    background: #c5c5c5;
}

.blue-stc {
    color: #00519F;
}

.orange-stc {
    color: #F18D24;
}

.gray-stc {
    color: #c5c5c5;
}
.zoom{
    /* Aumentamos la anchura y altura durante 2 segundos */
    transition: width 2s, height 2s, transform 2s;
}

.zoom:hover{
    /* tranformamos el elemento al pasar el mouse por encima al doble de su tamaño con scale(2). */
    transform : scale(1.04);
}
#movile {
    display: none;
}

/** Botones **/

.btn-orange {
    color: white;
    background: #F18D24;
    border: 1px solid #F18D24;
}

.btn-orange a:hover {
    color: white !important;
    background: #00519F !important;
    border: 1px solid #00519F !important;
}


/* Setup Desktop */


/** Header **/

.search_menu {
    margin-top: 10px;
    margin-left: 50px;
    float: right;
    display: flex;
}

.navbar {
    padding: 0 !important;
}

.contact_phone {
    float: right;
    width: auto;
    margin-left: 50px;
    margin-top: 5px;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    align-items: center;
    align-content: center;
}
.soporte-header {
    font-size: 0.7rem;
    font-family: 'Quicksand', sans-serif;
    margin-bottom: 0;
    font-weight: 600;
    color: #5a5858
}

.contact_email {
    float: left;
    width: auto
}

.contact_phone {
    margin-top: 0!important
}

.contact_phone p {
    font-size: 0.7rem;
    font-family: 'Quicksand', sans-serif;
    margin-bottom: 0;
    font-weight: 600;
    color: #5a5858;
}

.soporte-header  a {
    color: #f18d24;
    font-size: 0.92rem;
    font-weight: 600;
    font-family: 'Inter', sans-serif;
}

.soporte-header  a:hover {
    color: #00519f;
    text-decoration: none;
    transition: all .5s ease 0s
}

.contact_phone i,
.contact_phone svg {
    margin-right: 10px;
    color: #f18d24;
    font-size: 24px;
    flex-shrink: 0;
}


/** TOP Header **/

.top {
    background: #F0F5F9;
}

.text-top {
    font-family: 'Poppins', sans-serif;
    font-size: 14px;
    font-weight: 500;
    white-space: nowrap;
    margin-right: 8px;
}

/* Top header RRSS — fila en línea con flexbox */
#content-desktop .col-lg-3.rrss {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    flex-wrap: nowrap;
    float: none;
}

#content-desktop .rrssicon {
    float: none;
}

.rrss a {
    color: #00519F;
    margin: 0 4px;
}

.rrss a:hover {
    color: #F18D24;
}

.rrss i {
    font-size: 16px;
}


/* Header */

.header-corporate {
    height: 100px;
    padding-top: 5px;
}

.logo {
    float: left;
    text-align: left;
    align-items: flex-start;
}

.logo img {
    text-align: left;
}

.custom-logo {
    height: 85px !important;
    width: auto;
}


/* HOME **/

#quadmenu {
    display: none;
}


/* Home Slider */

section#services-home {
    background: white;
}

.slider-home {
    height: auto;
}


/* Home Content Services*/

.prj-home {
    height: 160px;
    margin-bottom: 20px;
}


/* Home Product */

.product-grid {
    margin: 2rem 0 5rem 0;
}

/* === TARJETAS DE SERVICIOS === */
.service-card-propuesta {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.3s ease;
    height: 100%;
}

.service-image-propuesta {
    position: relative;
    overflow: hidden;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.service-image-propuesta img {
    width: 100%;
    height: auto;
    transition: transform 0.5s ease;
}

.service-overlay-propuesta {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0, 81, 159, 0.9) 0%, rgba(241, 141, 36, 0.9) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: all 0.3s ease;
}

.service-link-icon-propuesta {
    font-size: 3rem;
    color: white;
    font-weight: bold;
    transform: translateX(-20px);
    transition: all 0.3s ease;
}

.service-card-propuesta:hover .service-image-propuesta img {
    transform: scale(1.1);
}

.service-card-propuesta:hover .service-overlay-propuesta {
    opacity: 1;
}

.service-card-propuesta:hover .service-link-icon-propuesta {
    transform: translateX(0);
}

/* Animación flotante */
@keyframes float {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px);
    }
}

.service-card-propuesta:hover {
    animation: float 3s ease-in-out infinite;
}

/* === ESTILOS LEGACY (mantener por compatibilidad) === */
.featured-Products {

}
.product-home {
    height: auto;
    float: left;
    margin-bottom: 1px;
    border: 1px solid #ECECEC;
    border-right: 0;
}
.product-home a img {
    max-width: 276px;
    height: auto;
}

.product-home:last-child {
    border-right: 1px solid #ECECEC;
}

.product-home h5 {
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    color: white;
    text-transform: uppercase;
    text-align: right;
    padding: 100px 10px 10px;
    vertical-align: text-bottom;
}

.product-home h5:hover {
    color: #F18D24;
}
 .product-home a {
    transform: scale(1);
    transition: transform 0.25s;
 }

 .product-home a:hover{
    transform: scale(1.2);
  }

/* === HOME  PROJECT === */

#proyectos-realizados H2{
    font-size: 2.5rem;
    font-weight: 700;
    color: #00519F;
    margin-bottom: 1rem;
    line-height: 1.3;
}

/* === HOME  NOTICES === */

section#content-blog {
    background-color: #F0F5F9;
    padding: 5rem 0;
}

#content-blog h2 {
    font-family: 'Inter', sans-serif;
    font-weight: 700;
    font-size: 2.5rem;
    text-align: center;
    color: #00519F;
}
.blog-grid{
    margin: 3rem 0 7rem 0;
}

/* === TARJETAS DE BLOG === */
.blog-card {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.blog-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.16);
}

.blog-image {
    position: relative;
    overflow: hidden;
    height: 220px;
}

.blog-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.blog-card:hover .blog-image img {
    transform: scale(1.1);
}

.blog-content {
    padding: 25px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.blog-title {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 15px;
}

.blog-title a {
    color: #00519F;
    text-decoration: none;
    transition: all 0.3s ease;
}

.blog-title a:hover {
    color: #F18D24;
    text-decoration: none;
}

.blog-excerpt {
    color: #5a5858;
    font-size: 0.95rem;
    margin-bottom: 20px;
    flex-grow: 1;
    line-height: 1.6;
}

.blog-link {
    color: #F18D24;
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
}

.blog-link:hover {
    color: #00519F;
    gap: 12px;
    text-decoration: none;
}

.blog-link i {
    transition: transform 0.3s ease;
}

.blog-link:hover i {
    transform: translateX(5px);
}

/* === ESTILOS LEGACY BLOG (mantener por compatibilidad) === */
.blog-image-propuesta {
    position: relative;
    overflow: hidden;
    height: 220px;
}

.blog-image-propuesta img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.blog-card-propuesta:hover .blog-image-propuesta img {
    transform: scale(1.1);
}

.blog-excerpt {
    color: #5a5858;
    font-size: 0.95rem;
    margin-bottom: 20px;
    flex-grow: 1;
}

.blog-link {
    color: #F18D24;
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
}

.blog-link:hover {
    color: #00519F;
    gap: 12px;
}

.notice h5 {
    font-family: 'Inter', sans-serif;
    font-weight: 700;
    text-align: justify;
    color: black;
    margin-top: 10px;
}

.notice p {
    color: #373742;
    font-family: 'Open Sans', sans-serif;
    color: #373742;
    font-weight: 500;
    font-size: 1.04rem;
    line-height: 1.7rem;
    text-align: justify;
}

.notice a {
    color: black;
    text-align: justify;
}

.notice a:hover {
    text-decoration: none;
    color: #2f2e2e;
    opacity: 0.80;
    filter: alpha(opacity=80) !important;
    /* For IE8 and earlier */
}

.readmore {
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    font-size: 15px;
}


/* ===================================
   Sección Contacto (Portada)
   =================================== */

section#contact {
    background: linear-gradient(135deg, #e8f0fa 0%, #f0f1f2 60%, #e4edf8 100%);
    padding: 80px 0;
    position: relative;
}

/* Columna izquierda: información */
.contact-info {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding-right: 40px;
}

.contact-info h2 {
    font-family: 'Inter', sans-serif;
    font-weight: 800;
    font-size: 36px;
    line-height: 1.2;
    color: #00519F;
    text-transform: uppercase;
    margin-bottom: 20px;
}

.contact-info p {
    font-family: 'Roboto', sans-serif;
    font-weight: 400;
    font-size: 17px;
    color: #444;
    line-height: 1.75;
    margin-bottom: 0;
}

/* Card de formulario */
.contact-form-card {
    background: #fff;
    border-radius: 12px;
    padding: 40px 36px;
    box-shadow: 0 8px 40px rgba(0, 81, 159, 0.10);
}

.contact-form-card h3 {
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    font-size: 22px;
    color: #333;
    text-align: center;
    margin-bottom: 28px;
    line-height: 1.4;
}

.contact-form-card h3 span {
    color: #00519F;
}


/* Parnert */

section#parnert {
    margin-bottom: 20px;
}

#parnert h2 {
    font-family: 'Inter', sans-serif;
    font-weight: 700;
    font-size: 2.5rem;
    text-align: center;
    color: #00519F;
    margin-top: 50px;
    margin-bottom: 30px;
}
div#n2-ss-5 .n2-ss-slider-3 {
    padding: 10px 30px 30px 30px !important;
}


/* Formulario CF7 a 2 columnas responsive */

.navbar-nav:last-child {
    border-right: 0
}

.form-control,
.wpcf7 input[type="text"],
.wpcf7 input[type="search"],
.wpcf7 input[type="url"],
.wpcf7 input[type="tel"],
.wpcf7 input[type="number"],
.wpcf7 input[type="range"],
.wpcf7 input[type="date"],
.wpcf7 input[type="month"],
.wpcf7 input[type="week"],
.wpcf7 input[type="time"],
.wpcf7 input[type="datetime"],
.wpcf7 input[type="datetime-local"],
.wpcf7 input[type="color"],
.wpcf7 input[type="email"],
.wpcf7 input[type="file"],
.wpcf7 input[type="submit"],
.wpcf7 input[type="rut"],
.wpcf7 select,
.wpcf7 textarea,
.wpcf7 .wpcf7-validation-errors {
    display: block;
    width: 100%;
    padding: 0.5rem 0.75rem;
    font-size: 1rem;
    line-height: 1.25;
    color: #464a4c;
    background-color: #fff;
    background-image: none;
    background-clip: padding-box;
    border: 1px solid rgba(0, 0, 0, 0.15);
    border-radius: 0.25rem;
    transition: border-color ease-in-out 0.15s, box-shadow ease-in-out 0.15s;
}

input.form-control:read-only {
    background-color #464a4c;
}

.input-group input[type="search"] {
    color: #c8c8c8 !important;
}

.input-group::placeholder {
    color: #c8c8c8 !important;
}

.wpcf7 input[type=text]::placeholder,
input[type=email]::placeholder,
input[type=search]::placeholder,
input[type=tel]::placeholder,
input[type=rut]::placeholder,
textarea::placeholder {
    color: #c8c8c8 !important;
    font-family: 'Poppins', sans-serif;
    font-weight: 500;
    font-size: 15px;
}

.wpcf7 input[type="submit"] {
    border: 1px solid transparent !important;
    border-radius: 0.25rem;
    display: inline-block;
    width: auto;
    margin: 0 10px;
    background-color: #00519F !important;
    color: white !important;
    float: right;
    margin-right: 0 !important;
    width: auto !important;
}

.wpcf7 input[type="submit"]:hover {
    border: 1px solid transparent;
    border-radius: 0.25rem;
    display: inline-block;
    width: auto;
    margin: 0 10px;
    background-color: #F18D24 !important;
    color: white;
    float: right;
}
.wpcf7-form-control-wrap {
    font-family: FontAwesome !important;
    }

#responsive-form {
    /*	max-width:600px; -- cambiar esto para conseguir el ancho de la forma deseada --*/
    margin: 0 auto;
    width: 100%;
}

.form-row {
    width: 100%;
}

.column-half,
.column-full {
    float: left;
    position: relative;
    padding: 0.65rem;
    width: 100%;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box
}

.clearfix:after {
    content: "";
    display: table;
    clear: both;
}


/* ===================================
   Footer
   =================================== */

footer#footer {
    background: #00519F;
    padding: 50px 0 30px;
}

#colophon {
    background: #00519F;
}

.footer-widget {
    margin-bottom: 30px;
    padding: 0 15px;
}

/* Títulos de widgets */
.footer-widget h2,
.footer-widget .widget-title {
    font-family: 'Quicksand', sans-serif;
    font-weight: 700;
    font-size: 15px;
    color: #F18D24;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding-bottom: 12px;
    margin-bottom: 20px;
    border-bottom: 2px solid rgba(255, 255, 255, 0.15);
}

/* Links del footer */
.footer-widget a {
    font-family: 'Poppins', sans-serif;
    font-weight: 400;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.85);
    transition: color 0.2s ease;
}

.footer-widget a:hover {
    color: #F18D24;
    text-decoration: none;
}

/* Listas del footer */
.footer-widget li {
    list-style: none;
    padding: 4px 0;
}

.footer-widget li:before {
    font-family: 'FontAwesome';
    content: '\f105';
    margin-right: 8px;
    color: #F18D24;
}

.widget-area ul {
    padding-left: 0;
}

/* Columna 1: Logo y contacto */
.f-1 img {
    width: 220px;
    margin-bottom: 16px;
    opacity: 0.95;
    display: block;
}

.f-1 p {
    color: rgba(255, 255, 255, 0.8);
    font-family: 'Roboto', sans-serif;
    font-size: 14px;
    line-height: 1.7;
    margin-bottom: 16px;
}

/* Lista de contacto */
.footer-contact-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-contact-list li:before {
    display: none;
}

.footer-contact-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 6px 0;
    color: rgba(255, 255, 255, 0.85);
    font-size: 14px;
}

.footer-contact-item .fa {
    color: #F18D24;
    background: transparent;
    width: 18px;
    font-size: 15px;
    text-align: center;
    border-radius: 0;
    padding: 0;
}

.footer-contact-item a {
    color: rgba(255, 255, 255, 0.85);
    font-size: 14px;
    transition: color 0.2s ease;
}

.footer-contact-item a:hover {
    color: #F18D24;
    text-decoration: none;
}

/* Redes sociales */
.footer-social-links {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 24px;
}

.rrss_footer {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: background 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
}

.rrss_footer:hover {
    background: #F18D24;
    border-color: #F18D24;
    transform: translateY(-2px);
    text-decoration: none;
}

footer#footer .rrss_footer .fa {
    color: white;
    background: transparent;
    border-radius: 0;
    padding: 0;
    width: auto;
    font-size: 18px;
}

/* Newsletter */
.footer-newsletter {
    margin-top: 8px;
}

.footer-newsletter .text-form {
    display: block;
    color: rgba(255, 255, 255, 0.85);
    font-size: 13px;
    font-family: 'Poppins', sans-serif;
    margin-bottom: 10px;
}

.footer-newsletter-input-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.footer-newsletter .form-control {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.25);
    color: white;
    font-size: 13px;
    border-radius: 4px;
    padding: 10px 14px;
    transition: border-color 0.2s ease, background 0.2s ease;
}

.footer-newsletter .form-control::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

.footer-newsletter .form-control:focus {
    background: rgba(255, 255, 255, 0.15);
    border-color: #F18D24;
    outline: none;
    box-shadow: 0 0 0 2px rgba(241, 141, 36, 0.25);
    color: white;
}

.btn-newsletter {
    background: #F18D24;
    color: white;
    border: none;
    font-family: 'Poppins', sans-serif;
    font-size: 13px;
    font-weight: 600;
    padding: 10px 20px;
    border-radius: 4px;
    cursor: pointer;
    transition: background 0.2s ease, transform 0.1s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.btn-newsletter:hover {
    background: #d97a18;
    transform: translateY(-1px);
    color: white;
}

/* Socket / Copyright */
#socket {
    background-color: #014b91;
    color: rgba(255, 255, 255, 0.8);
    font-size: 13px;
    padding: 12px 0;
    width: 100%;
    display: block;
}

.copyright {
    text-align: center;
    padding: 4px 0;
}

.copyright a {
    color: #FFF82A;
    transition: color 0.2s ease;
}

.copyright a:hover {
    color: #F18D24;
    text-decoration: none;
}


/* Page Pages */

section#breadcrumb {
    height: auto !important;
    background-color: #ececec !important;
}


/** Sidebar Single Services **/

.widget-ing-information {
    margin: 80px 0;
}

.widget-ing-information h5 {
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    text-align: center;
    font-size: 1.20rem;
}

.sidebar-service hr {
    color: #e0e0e0;
    margin: 0.6em;
}

.soporte-sidebar {
    font-size: 0.9em;
    font-family: 'Roboto', sans-serif;
    margin-bottom: 0;
    font-weight: 600;
    color: #5a5858;
    text-align: left;
}

.contact_phone_ p {
    font-size: 1em;
    font-family: 'Roboto', sans-serif;
    margin-bottom: 0;
    font-weight: 600;
    color: #9d9d9d;
}

.contact_sidebar a {
    color: #F18D24;
    font-size: 1.1em;
    font-weight: 700;
    float: left;
}

.contact_sidebar a:hover {
    color: #00519F;
    text-decoration: none;
    transition: all 0.5s ease 0s;
}

.contact_sidebar i {
    margin-top: 10px;
    margin-right: 5px;
    color: #F18D24;
    height: 35px;
    float: left;
    width: 18%;
}


/** Page Company **/

article.card {
    border: none;
    font-family: 'Roboto', sans-serif;
    color: black;
    font-weight: 400;
}

.entry-content {
    margin-bottom: 50px;
}

.entry-header h1 {
    font-family: 'Inter', sans-serif;
    color: #00519F;
    font-weight: 700;
    margin-top: 60px;
}

.entry-content h2 {
    font-family: 'Inter', sans-serif;
    color: #00519F;
    font-weight: 700;
    margin-top: 60px;
}

.entry-content h3 {
    font-family: 'Inter', sans-serif;
    color: #00519F;
    font-weight: 700;
    margin-top: 60px;
}

.entry-content h4 {
    font-family: 'Inter', sans-serif;
    color: #00519F;
    font-weight: 700;
    margin-top: 60px;
}

.entry-content h5 {
    font-family: 'Inter', sans-serif;
    color: #00519F;
    font-weight: 700;
    margin-top: 60px;
}

.entry-header {
    margin-top: 60px;
}

.entry-content p {
    font-family: 'Open Sans', sans-serif;
    color: #373742;
    font-weight: 400;
    font-size: 1.15rem;
    line-height: 1.8rem;
}

article li {
    font-family: 'Roboto', sans-serif;
    color: black;
    font-weight: 400;
    font-size: 18px;
}

article li::marker {
    color: #F18D24;
}


/** Page Contact **/

.data-contact-page {
    /*border-left: 1px solid #f5f5f5;*/
    padding-left: 20px;
}

.data-contact-page h5 {
    font-family: 'Inter', sans-serif;
    font-weight: 700;
    color: #101820;
    text-align: left;
    margin-bottom: 2px;
}

.data-contact-page p {
    font-family: 'Open Sans', sans-serif;
    font-weight: 400;
    color: #999999;
    font-size: 16px;
    text-align: left;
}

.contact-page p {
    font-family: 'Open Sans', sans-serif;
    color: #373742;
    font-weight: 400;
    font-size: 1.15rem;
    line-height: 1.8rem;
    text-align: left;
}

.data-contact-page img {
    width: 30px;
    float: left;
}

.contact-page h1 {
    color: #00519F;
    font-family: 'Inter', sans-serif;
    font-weight: 700;
}

.title-info-contact h3 {
    font-family: 'Inter', sans-serif;
    font-weight: 700;
    color: #F18D24;
    margin: 30px 0;
    text-align: left;
    border-bottom: 1px dotted #d9d9d9;
    padding-bottom: 10px;
}

.info-contact {
    border-top: 1px dotted #d9d9d9;
    padding: 20px 0;
    width: 100%;
    font-family: 'Roboto', sans-serif;
    font-weight: 500;
    font-size: 17px;
    height: 80px;
}

.info-contact:last-child {
    border-bottom: 1px dotted #d9d9d9;
    margin-bottom: 20px;
}

.info-contact i {
    height: 100%;
    float: left;
    margin-right: 10px;
    color: #00519F;
    width: 20%;
}

.data-contact-page a {
    float: left;
}

.data-contact-page {
    width: 100%;
    margin: 0 auto;
    text-align: center;
}

.data-contact-page i {
    margin: 10px 0 0 0;
    text-align: center;
    color: #00519F;
}

.data-contact-page i:hover {
    color: #F18D24;
}

.data-contact-page fa {
    margin: 0 auto;
    text-align: center;
}

.rrss_footer i:hover {
    color: white;
    background-color: #F18D24;
}

section#map {
    height: 600px;
    width: 100%;
}

.acf-map {
    width: 100%;
    height: 600px;
    margin: 0 0 0 0;
}


/** Sidebar Blog **/

.widget-img {
    width: 100%;
    float: left;
}


/* Pages Content Blog*/

.content-blog {
    margin-bottom: 40px;
}

.content-blog-img {
    width: 100%;
    float: left;
}

.content-blog-img img {
    width: 100%;
    object-fit: cover;
    width: 100%;
}

.content-blog-text {
    width: 100%;
    float: left;
}

.content-blog h5 {
    float: left;
    margin-top: 10px;
}

.content-blog h5 a {
    color: black;
    font-size: 20px;
    font-family: 'Inter', sans-serif;
    font-weight: 600;
}

.content-blog h5 a:hover {
    text-decoration: none;
    opacity: 0.80;
    filter: alpha(opacity=80) !important;
    /* For IE8 and earlier */
}

.content-blog p a {
    color: black;
}

.content-blog p a:hover {
    text-decoration: none;
    opacity: 0.80;
    filter: alpha(opacity=80) !important;
    /* For IE8 and earlier */
}


/* =Index pagination
----------------------------------------------- */

.paging-navigation {
    font-family: sans-serif;
    padding: 1em;
    background: #fff;
    background: hsl(0, 0%, 100%);
}


/* Remove bullets and list indentation */

.paging-navigation ul {
    list-style-type: none;
    margin: 0 auto;
    padding: 10px;
    border: 1px solid #f0f0f0;
    background-color: white;
    border-radius: 5px;
    font-size: 14px;
    font-family: 'Roboto', sans-serif;
    font-weight: 500;
    display: inline-block;
}


/* Make the list items appear horizontally */

.paging-navigation li {
    display: inline;
    border-right: 1px solid #f0f0f0;
}

.paging-navigation li:last-child {
    border-right: none;
}


/* Give each link and the current item some padding to make them easy to click */

a.page-numbers,
span.page-numbers {
    padding: .3em .7em;
    color: #333;
    color: hsl(0, 0%, 20%);
    text-decoration: none;
}


/* Link hover state */

a:hover.page-numbers {
    color: #F18D24;
    font-weight: 600;
    text-decoration: none;
}


/* Current page bold and dark */

.paging-navigation .current {
    font-weight: bold;
    color: #F18D24;
}


/* === SINGLE BLOG POST MODERN === */

section#content-single {
    background-color: white;
    padding: 30px 0 40px;
}

/* Sticky Badge */
.badge-sticky {
    position: absolute;
    top: 20px;
    right: 20px;
    background: linear-gradient(135deg, #F18D24 0%, #00519F 100%);
    color: white;
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    z-index: 10;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.2);
}

/* Hero Section */
.article-hero {
    position: relative;
    width: 100%;
    margin-bottom: 3rem;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.12);
}

.article-hero-image {
    position: relative;
    width: 100%;
    height: 500px;
    overflow: hidden;
}

.article-hero-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.article-single-modern:hover .article-hero-image img {
    transform: scale(1.02);
}

.article-hero-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 150px;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.6) 0%, transparent 100%);
}

/* Container */
.article-container {
    background: white;
    border-radius: 12px;
    padding: 0;
    position: relative;
}

/* Header */
.article-header {
    margin-bottom: 2.5rem;
    padding-bottom: 1.5rem;
    border-bottom: 2px solid #F0F5F9;
}

.article-title {
    font-family: 'Inter', sans-serif;
    font-weight: 700;
    font-size: 2.5rem;
    color: #00519F;
    line-height: 1.3;
    margin-bottom: 1.5rem;
    word-wrap: break-word;
}

.article-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    align-items: center;
}

.meta-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-family: 'Roboto', sans-serif;
    font-size: 0.9rem;
    color: #5a5858;
}

.meta-item i {
    color: #F18D24;
    font-size: 1rem;
}

/* Content */
.article-content {
    font-family: 'Open Sans', sans-serif;
    font-size: 1.15rem;
    line-height: 1.8;
    color: #373742;
    margin-bottom: 3rem;
}

.article-content p {
    margin-bottom: 1.5rem;
}

.article-content h2,
.article-content h3,
.article-content h4 {
    font-family: 'Inter', sans-serif;
    color: #00519F;
    font-weight: 700;
    margin-top: 2.5rem;
    margin-bottom: 1.2rem;
}

.article-content h2 {
    font-size: 2rem;
    border-left: 4px solid #F18D24;
    padding-left: 1rem;
}

.article-content h3 {
    font-size: 1.6rem;
}

.article-content h4 {
    font-size: 1.3rem;
}

.article-content img {
    border-radius: 12px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
    margin: 2rem 0;
    max-width: 100%;
    height: auto;
}

.article-content ul,
.article-content ol {
    padding-left: 2rem;
    margin-bottom: 1.5rem;
}

.article-content li {
    margin-bottom: 0.8rem;
}

.article-content li::marker {
    color: #F18D24;
}

.article-content blockquote {
    border-left: 4px solid #F18D24;
    background: #F0F5F9;
    padding: 1.5rem 2rem;
    margin: 2rem 0;
    border-radius: 0 12px 12px 0;
    font-style: italic;
    color: #2C3E50;
}

/* Footer */
.article-footer {
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 2px solid #F0F5F9;
}

.article-tags {
    margin-bottom: 2rem;
}

.article-tags .tags {
    margin: 0;
}

/* Share Section */
.article-share {
    background: linear-gradient(135deg, #F0F5F9 0%, #E6F2FF 100%);
    padding: 2rem;
    border-radius: 12px;
    text-align: center;
}

.share-title {
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    font-size: 1.1rem;
    color: #00519F;
    margin-bottom: 1.5rem;
}

.share-buttons {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.share-btn {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.2rem;
    transition: all 0.3s ease;
    text-decoration: none;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.share-btn:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.25);
    color: white;
    text-decoration: none;
}

.share-facebook {
    background: #3b5998;
}

.share-facebook:hover {
    background: #2d4373;
}

.share-twitter {
    background: #1DA1F2;
}

.share-twitter:hover {
    background: #0c85d0;
}

.share-linkedin {
    background: #0077B5;
}

.share-linkedin:hover {
    background: #005582;
}

.share-whatsapp {
    background: #25D366;
}

.share-whatsapp:hover {
    background: #1da851;
}

/* === RESPONSIVE === */
@media (max-width: 768px) {
    .article-hero-image {
        height: 300px;
    }

    .article-title {
        font-size: 1.8rem;
    }

    .article-meta {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.8rem;
    }

    .article-content {
        font-size: 1rem;
    }

    .article-content h2 {
        font-size: 1.6rem;
    }

    .article-share {
        padding: 1.5rem 1rem;
    }

    .share-btn {
        width: 45px;
        height: 45px;
        font-size: 1rem;
    }
}

/* === LEGACY STYLES (mantener por compatibilidad) === */
.card-title h4 a {
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    color: black;
    text-decoration: none;
}

.card-title h4 a:hover {
    color: #F18D24;
    text-decoration: none;
}

.entry-meta {
    font-size: 14px;
    font-family: 'Roboto', sans-serif;
    font-weight: 500;
    color: #8d8d8d;
    margin-bottom: 5px;
}

.entry-meta a {
    color: #8d8d8d;
}

.entry-meta a:hover {
    color: #8d8d8d;
    text-decoration: none;
}

.relatedaccessories h4 {
    font-family: 'Inter', sans-serif;
    font-weight: 700;
    width: 100%;
    color: #F18D24;
    margin-bottom: 10px;
}

.single-related {
    background-color: white;
    border: 1px solid #ededed;
    margin: 5px 0;
}

.single-related h6 {
    font-family: 'Inter', sans-serif;
    font-weight: 700;
    text-align: center;
}
.a2a_dd .addtoany_no_icon .addtoany_share_save .addtoany_share a {
    font-size: 1rem  !important;
    color:black;
    text-decoration: none;
  }


/* Widget Single Blog */

.content-widget-blog {}

.content-widget-blog h5 a {
    font-family: 'Inter', sans-serif;
    font-weight: 700;
    text-align: left;
    margin-top: 8px;
    color: black;
    font-size: 1.15rem;
}

.content-widget-blog h5 a:hover {
    color: #F18D24;
    text-decoration: none;
}

.widget h4 {
    font-family: 'Inter', sans-serif;
    background-color: #F18D24;
    color: white;
    text-align: center;
    padding: 5px;
}


/* Single Ingenieria */

.blog-ing-img img {
    height: 430px;
}

.post-service h2 {
    color: #F18D24;
    font-size: 35px;
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    text-align: left;
    margin-bottom: 10px;
}

section#lobservi {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    align-items: flex-start;
    margin-bottom: 50px;
}

.lobserviceicon {
    align-self: center;
    text-align: center;
    margin-bottom: 30px;
    flex-basis: 180px;
}

h2.title-service {
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    color: #F18D24;
    margin-bottom: 30px;
}

h6.lobservi {
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    color: black;
    text-align: center;
}

.widget-ing {
    background-color: #00519F;
    padding: 15px 15px;
    margin-bottom: 10px;
}

.widget-ing h6 {
    margin-bottom: 0;
}

.widget-ing h6 a {
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    margin-bottom: 0;
    color: white;
    text-decoration: none;
}

.widget-ing h6 a:hover {
    text-decoration: none;
    color: #F18D24;
}

.widget-ing a:active {
    color: #F18D24;
}

.title-information {
    text-align: center;
}

.data-information {
    width: 100%;
    margin-top: 10px;
}

.data-information i {
    float: left;
    width: 20px;
    color: #F18D24;
    margin-right: 10px;
    padding-top: 5px;
}

.data-information p {
    font-size: 16px;
    color: black;
    font-family: 'Roboto', sans-serif;
    font-weight: 600;
    text-align: left;
}

.contact_sidebar:first-child {
    /*	margin-bottom: 10px;*/
    /*border-bottom: 1px solid #e0e0e0;*/
}

.new_footer .span3>ul {
    margin-bottom: 38px !important;
    padding-left: 0;
    margin-left: 0 !important;
    overflow: hidden;
}

.new_footer li a,
.new_footer li a:hover {
    color: #fff;
    text-decoration: none;
}

.social-btns {
    line-height: 0;
    font-size: 0;
    letter-spacing: -1px;
    margin: 0 -5px;
    margin-top: 0;
    margin-bottom: 0;
}

.social-btns a {
    display: inline-block;
    vertical-align: middle;
    line-height: 1;
    color: #fff;
    text-align: center !important;
    text-decoration: none !important;
    letter-spacing: 0;
    margin: 0 5px;
    -webkit-transition: background-color .3s ease-in-out, border-color .3s ease-in-out, color .3s ease-in-out;
    -o-transition: background-color .3s ease-in-out, border-color .3s ease-in-out, color .3s ease-in-out;
    transition: background-color .3s ease-in-out, border-color .3s ease-in-out, color .3s ease-in-out;
}


/* Seach Dinamic */

.expanding-sf {
    float: left;
}

.form {
    margin: 0 auto !important;
    position: relative;
    width: 300px;
    z-index: 100;
}


/** Essentials **/

.toggle {
    background: url("https://i.imgur.com/ePNPopY.png") no-repeat scroll center center #F18D24;
    border: medium none;
    color: #FFFFFF;
    cursor: pointer;
    display: block;
    height: 40px;
    position: absolute;
    right: 0;
    width: 50px;
}

#searchform {
    float: right;
    height: 40px;
    margin: 0;
    opacity: 0;
    padding: 0;
    transition: all 0.2s ease-in-out 0s;
    visibility: hidden;
    width: 10px;
    -webkit-transition: all 0.2s ease-in-out;
    -moz-transition: all 0.2s ease-in-out;
    -o-transition: all 0.2s ease-in-out;
}

.form:hover #searchform {
    display: block;
    opacity: 1;
    -webkit-transition: all 0.2s ease-in-out;
    -moz-transition: all 0.2s ease-in-out;
    -o-transition: all 0.2s ease-in-out;
    visibility: visible;
    width: 250px;
}

#searchform #s {
    background: none repeat scroll 0 0 #F18D24;
    border: medium none;
    color: #FFFFFF;
    float: right;
    outline: none;
    font-family: helvetica, verdana, arial, sans-serif;
    font-size: 14px;
    height: 100%;
    padding: 0 15px;
    width: 100% !important;
}

#searchform #searchsubmit {
    background: url("https://i.imgur.com/ePNPopY.png") no-repeat scroll center center #F18D24;
    border: medium none;
    color: #FFFFFF;
    cursor: pointer;
    display: block;
    height: 40px;
    position: absolute;
    right: 0;
    width: 50px;
}

.searchcontent {
    margin-bottom: 10px;
    border-bottom: 1px solid #ededed;
}

.content-area h4 a {
    color: black;
    font-family: 'Inter', sans-serif;
    font-weight: 700;
}

.content-area h4 a:hover {
    color: #F18D24;
    text-decoration: none;
}


/*Social Share*/

.share-post {
    border-top: 0;
    margin-top: 0;
    padding-top: 0;
    margin-bottom: 50px;
    text-align: left;
    font-size: 0.8em;
}

.share-post a {
    display: inline-block;
    color: white;
    padding: 0 1em;
    line-height: 2em;
    margin: 0.1em;
}

.share-post a:hover {
    padding: 0 1em;
    line-height: 2em;
    margin: 0.1em;
    text-decoration: none;
    color: #f18d24;
    text-decoration: none;
}

.share-post .linkedind {
    background: #0077B5;
}

.share-post .facebook {
    background: #3b5998;
}

.share-post .twitter {
    background: #55acee;
}

.share-post .googleplus {
    background: #dd4b39;
}

.share-post .pinterest {
    background: #cc2127;
}


/* Tag */

.card-footer {
    padding: 0.75rem 1.25rem;
    background-color: none !important;
}

.tags {
    margin: 20px 0px 80px 0;
}

span.badge-pill a {
    font-family: 'Roboto', sans-serif;
    font-size: 18px;
    color: white;
    background-color: #00519F;
    border-radius: 10px;
    padding: 7px;
}

span.badge-pill a:hover {
    font-family: 'Roboto', sans-serif;
    background-color: #FAC012;
    color: #fff;
    font-weight: 600;
    text-decoration: none;
}


/* Promociones */

.promocion h3 {
    font-family: 'Inter', sans-serif;
    font-weight: 700;
    text-align: center;
    text-transform: uppercase;
    color: #f18d24;
    margin-top: 30px;
}


/**   404   **/


/* error 404 */

.error_404 {
    font-size: 10rem;
    color: black;
    font-family: Roboto;
    line-height: 350px;
    text-align: center;
    font-style: normal;
    font-weight: 900;
}

.errortitle {
    text-align: center;
    color: black;
    font-family: Roboto;
}


/* Back Top */

.button-top {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 100;
    width: 60px;
    height: 60px;
    border: 0;
    border-radius: 2px;
    box-shadow: none;
    background: #145474;
    color: #fff;
    font-size: 26px;
    line-height: 20px;
    text-align: center;
    cursor: pointer;
}

.chip {
    font-size: 18px !important;
    font-weight: 700;
    line-height: 40px;
}

.chip img {
    height: 40px !important;
    width: 40px !important;
}


/** Woocommerce **/

ul.products li.product .woocommerce-loop-product__title {
    font-size: 1.5rem !important;
    text-align: center;
    font-weight: 600;
}

figure.woocommerce-product-gallery__wrapper {
    height: 400px;
}

.woocommerce-product-gallery__image img {
    height: auto;
}

.single-product .summary.entry-summary .product_title.entry-title {
    font-size: 1.95rem !important;
    font-weight: 700;
}

.woocommerce-product-details__short-description p {
    font-family: 'Open Sans', sans-serif;
    color: #373742;
    font-weight: 400;
    font-size: 1.15rem;
    line-height: 1.8rem;
}


/* Design Modal Form */

#is-popup-wrapper {
    background: #101820;
    background: rgba(16, 24, 32, .99);
    z-index: 999999;
}

.is-form-style input.is-search-input {
    height: 80px;
    font-size: 23px !important;
}

.is-form-style button.is-search-submit {
    height: 80px;
    background-color: #ededed;
}

.is-form-style input.is-search-submit,
.is-search-icon {
    border: none;
}


/* Woocommerce Style */

.woocommerce ul.products li.product .woocommerce-loop-category__title,
.woocommerce ul.products li.product .woocommerce-loop-product__title,
.woocommerce ul.products li.product li h2 {
    padding: 0.2em 0;
    font-family: 'Montserrat', sans-serif;
    font-weight: 500;
    text-align: left;
    font-size: 18px;
    text-align: center;
}

ul.products li {
    float: left;
    list-style: none;
    text-align: center;
    font-weight: 700;
    text-decoration: none;
    width: 33%
}

.woocommerce ul.products li.product a {
    color: black;
}

.woocommerce ul.products li.product .price {
    color: #ff3c20;
    font-size: 18px;
    font-weight: 700;
    font-family: 'Montserrat', sans-serif;
    text-align: center;
}

.woocommerce span.onsale {
    background-color: #E03610;
    color: #fff;
    font-size: 0.5em;
}

.woocommerce-product-gallery__image {
    border: 1px solid #ebebeb !important;
}

.woocommerce-product-gallery__image:firt-child {
    width: 100% !important;
    float: left;
}

.woocommerce-product-gallery__image:nth-child(n+2) {
    width: 25%;
    float: left;
}

.entry-summary h1 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    text-align: left;
    font-size: 22px;
}

.woocommerce div.product p.price,
.woocommerce div.product span.price {
    color: #ff3c20;
    font-size: 20px;
    font-weight: 700;
    font-family: 'Montserrat', sans-serif;
    margin-bottom: 0.2rem !important;
}

.lead p {
    border-top: 1px solid #f0f0ed;
    overflow: hidden;
    padding: 20px 0 0;
    font-family: 'Open Sans', sans-serif;
    font-size: 14px;
    width: 100%;
    text-align: justify;
}

.product_meta {
    float: left;
    width: 100%;
    display: block;
    margin-bottom: 10px;
}

.product_meta span {
    font-family: 'Open Sans', sans-serif;
    font-size: 13px;
    font-weight: 600;
    text-align: left;
    color: #777474;
}

.product_meta span>a {
    color: #777474;
}

.woocommerce-tabs {
    margin-top: 5rem !important;
}

.product_meta span>a:hover {
    text-decoration: none;
    color: #ED3D08;
}

.woocommerce-product-gallery__trigger {
    border-radius: 0;
    bottom: 0;
    height: 35px;
    right: 0;
    top: auto;
    width: 35px;
    margin-right: 7px;
}

.woocommerce #content div.product div.summary,
.woocommerce div.product div.summary,
.woocommerce-page #content div.product div.summary,
.woocommerce-page div.product div.summary {
    float: right;
    width: auto;
}

.summary .entry-summary {
    width: 100% !important;
}

.woocommerce #content div.product div.summary,
.woocommerce div.product div.summary,
.woocommerce-page #content div.product div.summary,
.woocommerce-page div.product div.summary {
    width: 100% !important;
}

.woocommerce ul.products li.product .woocommerce-loop-category__title,
.woocommerce ul.products li.product .woocommerce-loop-product__title,
.woocommerce ul.products li.product li h2 {
    font-size: 1.2em !important;
    font-weight: 600 !important;
}

/* ===================================
   Tabla de características ACF
   =================================== */

.product-specs-wrap {
    margin: 28px 0 20px;
    border-radius: 10px;
    overflow: hidden;
    border: 1px solid #e4edf8;
    box-shadow: 0 2px 10px rgba(0, 81, 159, 0.06);
}

.product-specs-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 14px;
    margin: 0;
}

.product-specs-table thead tr {
    background: #00519F;
}

.product-specs-table .specs-title {
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    font-size: 14px;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 0.6px;
    padding: 13px 18px;
    text-align: left;
}

.product-specs-table tbody tr:nth-child(even) {
    background: #f4f8fd;
}

.product-specs-table tbody tr:nth-child(odd) {
    background: #fff;
}

.product-specs-table tbody tr:last-child td {
    border-bottom: none;
}

.product-specs-table .spec-label {
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    font-size: 13px;
    color: #00519F;
    padding: 11px 18px;
    border-bottom: 1px solid #e4edf8;
    border-right: 2px solid #e8f0fa;
    width: 38%;
    vertical-align: middle;
}

.product-specs-table .spec-value {
    font-family: 'Roboto', sans-serif;
    font-size: 14px;
    color: #333;
    padding: 11px 18px;
    border-bottom: 1px solid #e4edf8;
    vertical-align: middle;
    line-height: 1.6;
}

.lead {
    font-size: 1em !important;
    text-align: justify;
}

.related {
    margin: 50px 0;
    float: left;
}

.related a>h2 {
    font-family: 'Montserrat', sans-serif;
    font-size: 20px;
    color: black;
    font-weight: 700;
    text-align: center;
    text-decoration: none;
}

.related a:hover>h2 {
    color: black;
    text-decoration: none;
    text-align: center;
}

.related ul li {
    width: 25%;
    margin-right: 1rem !important;
    float: left !important;
}

a.product_type_simple {
    display: none;
}

ul.products li.product.first {
    clear: none !important;
}

.related .products ul li {
    width: 21%;
}

#secction.relatedproducts ul li {
    width: 25%;
    float: left;
}

#secction.relatedproducts img {
    margin-bottom: 10px;
}

.archive_cat {
    margin-bottom: 50px;
}

.archive_cat  svg {
    color: #c91e29;
    margin-right: 5px;
    float: left;
    height: 20px !important;
}

.archive_cat p {
    float: left;
}

.archive_cat p a {
    font-family: 'Roboto', sans-serif;
    color: black;
    font-weight: 500;
    float: left;
    text-decoration: none;
}

.archive_cat p a:hover {
    color: #F18D24;
    text-decoration: none;
}

.archives_woocommerce {
    width: auto;
    margin-right: 30px;
    float: left;
}

/* ===================================
   Accesorios relacionados ACF
   =================================== */

.relatedaccessories {
    margin: 32px 0 20px;
    padding: 24px;
    border-radius: 10px;
    border: 1px solid #e4edf8;
    background: #f9fbfe;
}

.relatedaccessories h5 {
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    font-size: 15px;
    color: #00519F;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid #F18D24;
    display: inline-block;
}

.accessories-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 14px;
}

.accessories-grid .accessory-card .accessory-link {
    display: block;
    text-decoration: none;
    border-radius: 8px;
    overflow: hidden;
    border: 1px solid #e4edf8;
    background: #fff;
    transition: box-shadow 0.2s ease, transform 0.2s ease;
    text-align: center;
}

.accessories-grid .accessory-card .accessory-link:hover {
    box-shadow: 0 6px 20px rgba(0, 81, 159, 0.12);
    transform: translateY(-3px);
    text-decoration: none;
}

.accessories-grid .accessory-card .accessory-img-wrap {
    background: #f5f5f5;
}

.accessories-grid .accessory-card .accessory-img-wrap img {
    width: 100%;
    height: 100px;
    object-fit: contain;
    padding: 8px;
    transition: opacity 0.2s ease;
}

.accessories-grid .accessory-card .accessory-link:hover .accessory-img-wrap img {
    opacity: 0.88;
}

.accessories-grid .accessory-card .accessory-name {
    font-family: 'Poppins', sans-serif;
    font-size: 12px;
    font-weight: 600;
    color: #333;
    text-align: center;
    padding: 8px 6px;
    margin: 0;
    line-height: 1.4;
    border-top: 1px solid #eef2f8;
}

.accessories-grid .accessory-card .accessory-link:hover .accessory-name {
    color: #00519F;
}

@media (max-width: 991px) {
    .accessories-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

@media (max-width: 575px) {
    .accessories-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 10px;
    }
    .accessories-grid .accessory-card .accessory-img-wrap img {
        height: 80px;
    }
}


/* Pagination */

.woocommerce-pagination {
    clear: both;
}


/*.page-numbers li {
	float: left;
	padding: 8px;
	border:none !important;
}*/

.page-numbers a.woocommerce-LoopProduct-link {
    display: none !important;
}

nav.woocommerce-pagination ul li a {
    /*   background: #F18D24;*/
    color: black;
}

.woocommerce nav.woocommerce-pagination ul li a:focus,
.woocommerce nav.woocommerce-pagination ul li a:hover,
.woocommerce nav.woocommerce-pagination ul li span.current {
    background: #00519F;
    color: white;
}

.woocommerce-pagination {
    margin-bottom: 50px;
}

.woocommerce .woocommerce-breadcrumb {
    margin: 0 0 0em !important;
}

.single-product div.product .woocommerce-product-gallery .flex-control-thumbs {
    width: 100%;
}

.single-product div.product .woocommerce-product-gallery.woocommerce-product-gallery--columns-4 .flex-control-thumbs li {
    width: 22.15%;
}


/** Gradientes **/

.gradient {
    background-image: -webkit-linear-gradient(transparent 40%, black 100%);
    background-image: -o-linear-gradient(transparent 40%, black 100%);
    background-image: linear-gradient(transparent 30%, black 100%);
    background-repeat: repeat-x;
    filter: progid: DXImageTransform.Microsoft.gradient(startColorstr='transparent', endColorstr='black', GradientType=0);
    width: 100%;
    height: 160px;
}

.gradient2 {
    background-image: -webkit-linear-gradient(transparent 5%, black 100%);
    background-image: -o-linear-gradient(transparent 5%, black 100%);
    background-image: linear-gradient(transparent 5%, black 100%);
    background-repeat: repeat-x;
    filter: progid: DXImageTransform.Microsoft.gradient(startColorstr='transparent', endColorstr='black', GradientType=0);
    width: 100%;
    height: 100%;
}

.gradient3 {
    background-image: -webkit-linear-gradient(transparent 40%, black 100%);
    background-image: -o-linear-gradient(transparent 40%, black 100%);
    background-image: linear-gradient(transparent 40%, black 100%);
    background-repeat: repeat-x;
    filter: progid: DXImageTransform.Microsoft.gradient(startColorstr='transparent', endColorstr='black', GradientType=0);
    width: 100%;
    height: 100%;
    z-index: 200;
}


/**---------------- Media query ----------------**/

@media only screen and (min-width: 48em) {
    .column-half {
        width: 50%;
    }
}

@media only screen and (min-width: 36em) {
    .column-half {
        width: 50%;
    }
}
/* ── Breadcrumb layout ── */
.breadcrumbs ol.breadcrumb-list {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    list-style: none;
    padding: 0;
    margin: 0;
}
.breadcrumbs .breadcrumb-item {
    display: flex;
    align-items: center;
}


/* ============================================================
   SECCIÓN PROYECTOS REALIZADOS — portada (layout asimétrico)
   ============================================================ */

.prj-section {
    position: relative;
    padding: 96px 0 80px;
    background: #e8ecf1;
    overflow: hidden;
}

.prj-section__dots {
    position: absolute;
    inset: 0;
    background-image: radial-gradient(circle, rgba(0,0,0,0.06) 1px, transparent 1px);
    background-size: 28px 28px;
    pointer-events: none;
}

/* Header bicolumna */
.prj-section__header {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 40px;
    margin-bottom: 52px;
}

.prj-section__eyebrow {
    display: block;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--primary-orange);
    margin-bottom: 12px;
}

.prj-section__title {
    font-size: clamp(1.8rem, 3.5vw, 2.8rem);
    font-weight: 800;
    line-height: 1.15;
    color: var(--dark-blue);
    margin: 0;
}

.prj-section__title em {
    font-style: normal;
    color: var(--primary-orange);
}

.prj-section__header-right {
    max-width: 440px;
    flex-shrink: 0;
    text-align: right;
}

.prj-section__desc {
    font-size: 0.92rem;
    line-height: 1.7;
    color: var(--medium-gray);
    margin-bottom: 18px;
}

.prj-section__ver-todos {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--dark-blue);
    font-size: 0.88rem;
    font-weight: 600;
    text-decoration: none;
    border-bottom: 1px solid rgba(0,51,102,0.3);
    padding-bottom: 2px;
    transition: border-color 0.2s, color 0.2s;
}

.prj-section__ver-todos:hover {
    color: var(--primary-orange);
    border-color: var(--primary-orange);
    text-decoration: none;
}

.prj-section__arrow {
    display: inline-block;
    transition: transform 0.2s ease;
}

.prj-section__ver-todos:hover .prj-section__arrow {
    transform: translateX(5px);
}

/* Grid asimétrico: hero izquierda + 2 compactas derecha */
.prj-section__grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    grid-template-rows: auto auto;
    gap: 18px;
}

/* ── Card base ── */
.prj-card {
    display: flex;
    flex-direction: column;
    border-radius: 10px;
    overflow: hidden;
    background: #fff;
    box-shadow: 0 4px 20px rgba(0,61,82,.10);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.prj-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 14px 40px rgba(0,61,82,.18);
}

.prj-card--hero { grid-row: 1 / 3; }

/* ── Imagen ── */
.prj-card__img-wrap {
    position: relative;
    overflow: hidden;
    flex-shrink: 0;
}

.prj-card--hero .prj-card__img-wrap   { /*aspect-ratio: 4/5; */}
.prj-card--compact .prj-card__img-wrap { aspect-ratio: 16/9; }

.prj-card__img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease;
}

.prj-card:hover .prj-card__img-wrap img { transform: scale(1.04); }

/* Número badge */
.prj-card__num {
    position: absolute;
    top: 14px;
    left: 14px;
    background: var(--primary-orange);
    color: #fff;
    font-size: 0.66rem;
    font-weight: 800;
    letter-spacing: .1em;
    text-transform: uppercase;
    padding: 4px 10px;
    border-radius: 3px;
    z-index: 1;
}

/* ── Panel de texto ── */
.prj-card__panel {
    padding: 18px 22px 22px;
    border-top: 3px solid var(--primary-orange);
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.prj-card__cat {
    font-size: 0.68rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .1em;
    color: var(--primary-orange);
}

.prj-card__title {
    font-size: 1rem;
    font-weight: 700;
    color: #003d52;
    line-height: 1.35;
    margin: 0;
}

.prj-card--hero .prj-card__title { font-size: 2.15rem; }

.prj-card__title a {
    color: inherit;
    text-decoration: none;
    transition: color 0.2s;
}
.prj-card__title a:hover { color: var(--primary-orange); text-decoration: none; }

.prj-card__meta {
    margin-top: auto;
    padding-top: 10px;
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.78rem;
    color: #64748b;
}

.prj-card__client {
    display: flex;
    align-items: center;
    gap: 7px;
}
.prj-card__client::before {
    content: '';
    display: block;
    width: 14px;
    height: 2px;
    background: var(--primary-orange);
    flex-shrink: 0;
    border-radius: 1px;
}

.prj-card__year {
    padding-left: 10px;
    border-left: 1px solid #e2e8f0;
}

/* ── Responsive ── */
@media (max-width: 991px) {
    .prj-section__header { gap: 28px; }
    .prj-section__header-right { max-width: 340px; }

    .prj-section__grid {
        grid-template-columns: 1fr 1fr;
        grid-template-rows: auto;
    }
    .prj-card--hero {
        grid-column: 1 / 3;
        grid-row: 1 / 2;
    }
    .prj-card--hero .prj-card__img-wrap { aspect-ratio: 16/7; }
}

@media (max-width: 767px) {
    .prj-section { padding: 64px 0 56px; }
    .prj-section__header { flex-direction: column; align-items: flex-start; gap: 20px; margin-bottom: 36px; }
    .prj-section__header-right { text-align: left; max-width: 100%; }
    .prj-section__grid { grid-template-columns: 1fr; grid-template-rows: auto; gap: 14px; }
    .prj-card--hero { grid-column: auto; grid-row: auto; }
    .prj-card--hero .prj-card__img-wrap { aspect-ratio: 16/9; }
}

@media (max-width: 479px) {
    .prj-section__title { font-size: 1.6rem; }
}
