:root {
    --amarillo: #CFAE0E;
    --gris: #6C6C6B;
}

/* TIPOGRAFÍA GLOBAL */

body {

    font-family: Garamond, "Times New Roman", serif;

}


.top-bar {
    background: var(--gris);
    color: white;
    padding: 10px 0;
}


/*====================================
HERO SLIDER INKAMAR
====================================*/

.hero {

    position: relative;

    height: 850px;

    overflow: hidden;
}

/* SLIDER */

.hero-slider {

    position: absolute;

    inset: 0;

    z-index: 1;
}

.hero-slide {

    position: absolute;

    inset: 0;

    background-size: cover;

    background-position: center;

    background-repeat: no-repeat;

    opacity: 0;

    transition: opacity 1.5s ease;
}

.hero-slide.active {

    opacity: 1;
}

/* CAPA OSCURA */

.hero-overlay {

    position: absolute;

    inset: 0;

    background: rgba(0, 0, 0, .45);

    z-index: 2;
}

/* CONTENIDO */

.hero-content {

    position: absolute;

    top: 55%;

    left: 50%;

    transform: translate(-50%, -50%);

    width: min(900px, 90%);

    text-align: center;

    z-index: 10;
}

/* BADGE */

.hero-badge {

    display: inline-block;

    background: #CFAE0E;

    color: #fff;

    font-weight: 700;

    padding: 12px 28px;

    border-radius: 50px;

    margin-bottom: 25px;

    letter-spacing: 1px;

    box-shadow: 0 10px 25px rgba(207, 174, 14, .35);
}

/* TITULO */

.hero-title {

    font-size: clamp(3rem, 6vw, 5.5rem);

    font-weight: 900;

    line-height: 1.1;

    color: #FFF;

    margin-bottom: 25px;

    text-transform: uppercase;

    text-shadow:
        0 4px 20px rgba(0, 0, 0, .60);
}

.hero-title span {

    display: block;

    color: #CFAE0E;
}

/* DESCRIPCIÓN */

.hero-description {

    max-width: 780px;

    margin: auto;

    font-size: 1.15rem;

    line-height: 1.9;

    color: #FFF;

    background: rgba(0, 0, 0, .45);

    backdrop-filter: blur(10px);

    padding: 25px 35px;

    border-left: 5px solid #CFAE0E;

    border-radius: 10px;
}

/* BOTONES */

.hero-buttons {

    margin-top: 35px;

    display: flex;

    justify-content: center;

    gap: 15px;

    flex-wrap: wrap;
}

/* FLECHAS */

.hero-arrow {

    position: absolute;

    top: 50%;

    transform: translateY(-50%);

    width: 60px;

    height: 60px;

    border: none;

    border-radius: 50%;

    background: rgba(255, 255, 255, .15);

    backdrop-filter: blur(8px);

    color: #FFF;

    cursor: pointer;

    z-index: 20;

    transition: .3s;
}

.hero-arrow:hover {

    background: #CFAE0E;

    transform: translateY(-50%) scale(1.08);
}

.hero-prev {

    left: 30px;
}

.hero-next {

    right: 30px;
}

.hero-arrow i {

    font-size: 20px;
}

/* DOTS */

.hero-dots {

    position: absolute;

    bottom: 40px;

    left: 50%;

    transform: translateX(-50%);

    display: flex;

    gap: 12px;

    z-index: 20;
}

.hero-dot {

    width: 14px;

    height: 14px;

    border-radius: 50%;

    background: rgba(255, 255, 255, .45);

    transition: .3s;
}

.hero-dot.active {

    background: #CFAE0E;

    transform: scale(1.2);
}

/* RESPONSIVE */

@media(max-width:991px) {

    .hero {

        height: 750px;
    }

    .hero-title {

        font-size: 3.5rem;
    }
}

@media(max-width:768px) {

    .hero {

        height: 700px;
    }

    .hero-content {

        width: 92%;
    }

    .hero-title {

        font-size: 2.5rem;
    }

    .hero-description {

        font-size: 1rem;

        padding: 20px;
    }

    .hero-arrow {

        width: 45px;

        height: 45px;
    }

    .hero-prev {

        left: 10px;
    }

    .hero-next {

        right: 10px;
    }
}

.btn-cotizar {

    background: #CFAE0E;

    color: #fff;

    font-weight: 700;

    padding: 14px 30px;

    border-radius: 4px;

    border: none;

    transition: .3s;
}

.btn-cotizar:hover {

    background: #6C6C6B;

    color: #fff;

    transform: translateY(-3px);
}

.btn-secondary-custom {

    background: #6C6C6B;

    color: #fff;

    padding: 14px 30px;

    font-weight: 700;

    border-radius: 4px;

    text-decoration: none;

    transition: .3s;
}

.btn-secondary-custom:hover {

    background: #555;

    color: #fff;

    transform: translateY(-3px);
}

/* MENU FLOTANTE */

.menu-floating {
    position: absolute;
    top: 40px;
    width: 100%;
    z-index: 100;
}

.menu-floating .container {

    background: #fff;

    border-radius: 8px;

    padding: 0 25px;

    box-shadow:
        0 15px 40px rgba(0, 0, 0, .15);
}

.navbar {
    min-height: 90px;
}

.navbar-brand img {
    height: 70px;
}

.nav-link {

    color: var(--gris) !important;

    font-weight: 700;

    text-transform: uppercase;

    margin: 0 8px;

    position: relative;
}

.nav-link::after {

    content: '';

    position: absolute;

    width: 0;

    height: 3px;

    background: var(--amarillo);

    bottom: -5px;

    left: 50%;

    transform: translateX(-50%);

    transition: .3s;
}

.nav-link:hover::after {

    width: 100%;
}

.nav-link:hover {

    color: var(--amarillo) !important;
}

.btn-cotizar {

    background: var(--amarillo);

    color: white;

    font-weight: 700;

    padding: 12px 25px;

    border-radius: 5px;
}

.btn-cotizar:hover {

    background: var(--gris);

    color: white;
}

.hero-content {

    position: absolute;

    top: 50%;

    left: 50%;

    transform: translate(-50%, -50%);

    text-align: center;

    color: white;
}


.about-section {
    padding: 120px 0;
    background: #fff;
}

.section-subtitle {
    color: #CFAE0E;
    font-weight: 700;
    letter-spacing: 2px;
    margin-bottom: 15px;
    display: block;
}

.section-title {
    font-size: 3rem;
    font-weight: 800;
    color: #222;
    margin-bottom: 25px;
}

.about-text {
    color: #555;
    line-height: 1.9;
    margin-bottom: 20px;
}

.about-image {
    position: relative;
}

.about-image img {
    width: 100%;
    border-radius: 15px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, .15);
}

.experience-box {

    position: absolute;

    bottom: 25px;
    right: -20px;

    background: #CFAE0E;

    color: white;

    padding: 25px;

    border-radius: 10px;

    text-align: center;

    min-width: 180px;
}

.experience-box i {
    font-size: 2rem;
    margin-bottom: 10px;
    display: block;
}

.experience-box strong {
    display: block;
    font-size: 1.4rem;
}

.about-features {

    margin-top: 35px;

    display: grid;

    grid-template-columns: repeat(2, 1fr);

    gap: 15px;
}

.feature-item {

    background: #f8f8f8;

    padding: 15px;

    border-radius: 10px;

    display: flex;

    align-items: center;

    gap: 12px;

    transition: .3s;
}

.feature-item:hover {

    transform: translateY(-5px);

    background: #fff;

    box-shadow: 0 10px 25px rgba(0, 0, 0, .08);
}

.feature-item i {

    width: 45px;
    height: 45px;

    background: #CFAE0E;

    color: white;

    border-radius: 50%;

    display: flex;

    align-items: center;

    justify-content: center;

    font-size: 18px;
}

.services-section {

    padding: 120px 0;

    background: #f8f8f8;
}

.section-header {

    max-width: 800px;

    margin: auto;

    margin-bottom: 70px;
}

.section-subtitle {

    color: #CFAE0E;

    font-weight: 700;

    letter-spacing: 2px;

    display: block;

    margin-bottom: 15px;
}

.section-title {

    font-size: 3rem;

    font-weight: 800;

    color: #222;

    margin-bottom: 20px;
}

.section-description {

    color: #666;

    font-size: 1.1rem;
}

.service-card {

    background: white;

    padding: 40px 30px;

    border-radius: 15px;

    height: 100%;

    transition: .4s;

    position: relative;

    overflow: hidden;

    box-shadow: 0 10px 30px rgba(0, 0, 0, .06);
}

.service-card:hover {

    transform: translateY(-10px);

    box-shadow: 0 25px 50px rgba(0, 0, 0, .12);
}

.service-card::before {

    content: "";

    position: absolute;

    top: 0;

    left: 0;

    width: 100%;

    height: 5px;

    background: #CFAE0E;
}

.service-icon {

    width: 80px;

    height: 80px;

    background: #CFAE0E;

    border-radius: 50%;

    display: flex;

    align-items: center;

    justify-content: center;

    margin-bottom: 25px;
}

.service-icon i {

    color: white;

    font-size: 32px;
}

.service-card h4 {

    font-size: 1.4rem;

    font-weight: 700;

    color: #222;

    margin-bottom: 15px;
}

.service-card p {

    color: #666;

    line-height: 1.8;

    margin: 0;
}

.projects-section {

    padding: 120px 0;

    background: #ffffff;
}

.project-card {

    background: #fff;

    border-radius: 15px;

    overflow: hidden;

    transition: .4s;

    box-shadow: 0 10px 30px rgba(0, 0, 0, .08);

    height: 100%;
}

.project-card:hover {

    transform: translateY(-10px);

    box-shadow: 0 25px 50px rgba(0, 0, 0, .15);
}

.project-image {

    position: relative;

    overflow: hidden;
}

.project-image img {

    width: 100%;

    height: 280px;

    object-fit: cover;

    transition: .5s;
}

.project-card:hover img {

    transform: scale(1.1);
}

.project-overlay {

    position: absolute;

    inset: 0;

    background: rgba(207, 174, 14, .85);

    display: flex;

    align-items: center;

    justify-content: center;

    opacity: 0;

    transition: .4s;
}

.project-card:hover .project-overlay {

    opacity: 1;
}

.project-overlay a {

    width: 60px;

    height: 60px;

    background: white;

    color: #CFAE0E;

    border-radius: 50%;

    display: flex;

    align-items: center;

    justify-content: center;

    text-decoration: none;

    font-size: 22px;
}

.project-content {

    padding: 25px;
}

.project-category {

    color: #CFAE0E;

    font-weight: 700;

    font-size: .85rem;

    letter-spacing: 1px;

    text-transform: uppercase;
}

.project-content h4 {

    margin-top: 10px;

    font-weight: 700;

    color: #222;
}

.project-content p {

    color: #666;

    margin-top: 10px;

    line-height: 1.7;
}

.cta-section {

    padding: 120px 0;

    background: #f5f5f5;
}

.cta-box {

    background: linear-gradient(135deg,
            #6C6C6B 0%,
            #4f4f4f 100%);

    border-radius: 20px;

    padding: 60px;

    color: white;

    position: relative;

    overflow: hidden;

    box-shadow: 0 20px 60px rgba(0, 0, 0, .15);
}

.cta-box::before {

    content: "";

    position: absolute;

    width: 350px;

    height: 350px;

    background: rgba(207, 174, 14, .15);

    border-radius: 50%;

    top: -120px;

    right: -120px;
}

.cta-badge {

    display: inline-flex;

    align-items: center;

    gap: 10px;

    background: rgba(255, 255, 255, .1);

    border: 1px solid rgba(255, 255, 255, .15);

    padding: 10px 20px;

    border-radius: 50px;

    margin-bottom: 25px;

    color: #CFAE0E;

    font-weight: 600;
}

.cta-box h2 {

    font-size: 3rem;

    font-weight: 800;

    line-height: 1.2;

    margin-bottom: 20px;
}

.cta-box p {

    color: #ddd;

    font-size: 1.1rem;

    line-height: 1.8;

    max-width: 700px;
}

.cta-features {

    margin-top: 25px;

    display: flex;

    gap: 25px;

    flex-wrap: wrap;
}

.cta-features span {

    display: flex;

    align-items: center;

    gap: 10px;

    font-weight: 600;
}

.cta-features i {

    color: #CFAE0E;
}

.btn-cta {

    display: inline-block;

    background: #CFAE0E;

    color: white;

    text-decoration: none;

    padding: 18px 35px;

    border-radius: 8px;

    font-weight: 700;

    font-size: 1rem;

    transition: .3s;
}

.btn-cta:hover {

    background: white;

    color: #6C6C6B;

    transform: translateY(-3px);
}

.cta-phone {

    margin-top: 25px;

    font-size: 1.1rem;

    font-weight: 600;
}

.cta-phone i {

    color: #CFAE0E;

    margin-right: 10px;
}

.footer {

    background: #222;

    color: #fff;

    padding-top: 90px;
}

.footer-logo h3 {

    font-size: 2rem;

    font-weight: 800;

    color: #fff;

    margin: 0;
}

.footer-logo span {

    color: #CFAE0E;

    letter-spacing: 2px;

    font-weight: 600;
}

.footer-description {

    color: #cfcfcf;

    line-height: 1.8;

    margin-top: 20px;
}

.footer-title {

    color: #fff;

    font-weight: 700;

    margin-bottom: 25px;

    position: relative;
}

.footer-title::after {

    content: "";

    position: absolute;

    bottom: -10px;

    left: 0;

    width: 50px;

    height: 3px;

    background: #CFAE0E;
}

.footer-links {

    list-style: none;

    padding: 0;
}

.footer-links li {

    margin-bottom: 12px;
}

.footer-links a {

    color: #cfcfcf;

    text-decoration: none;

    transition: .3s;
}

.footer-links a:hover {

    color: #CFAE0E;

    padding-left: 5px;
}

.footer-contact p {

    color: #cfcfcf;

    margin-bottom: 15px;

    display: flex;

    align-items: center;

    gap: 12px;
}

.footer-contact i {

    color: #CFAE0E;

    width: 20px;
}

.social-links {

    display: flex;

    gap: 12px;

    margin-top: 25px;
}

.social-links a {

    width: 45px;

    height: 45px;

    border-radius: 50%;

    background: #333;

    color: white;

    display: flex;

    align-items: center;

    justify-content: center;

    transition: .3s;
}

.social-links a:hover {

    background: #CFAE0E;

    transform: translateY(-5px);
}

.footer-bottom {

    margin-top: 60px;

    padding: 20px 0;

    background: #1a1a1a;

    color: #bdbdbd;

    border-top: 1px solid rgba(255, 255, 255, .08);
}

.cta-phone {

    margin-top: 25px;

    font-size: 1.1rem;

    font-weight: 600;
}

.cta-phone a {

    color: white;

    text-decoration: none;

    transition: .3s;
}

.cta-phone a:hover {

    color: #CFAE0E;
}

.cta-phone i {

    color: #CFAE0E;

    margin-right: 10px;
}

/* ==========================
   WHATSAPP FLOAT
========================== */

.whatsapp-float {

    position: fixed;

    right: 25px;

    bottom: 25px;

    z-index: 9999;

    display: flex;

    align-items: center;

    gap: 12px;

    background: #25D366;

    color: #fff;

    text-decoration: none;

    padding: 14px 18px;

    border-radius: 60px;

    box-shadow: 0 10px 30px rgba(0, 0, 0, .25);

    transition: .3s;

    animation: pulseWhatsapp 2s infinite;
}

.whatsapp-float:hover {

    color: #fff;

    transform: translateY(-5px);
}

.whatsapp-float i {

    font-size: 34px;
}

.whatsapp-text {

    font-size: 14px;

    font-weight: 700;

    white-space: nowrap;
}

/* ANIMACION */

@keyframes pulseWhatsapp {

    0% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, .7);
    }

    70% {
        box-shadow: 0 0 0 18px rgba(37, 211, 102, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
    }
}

.about-corporate {

    padding: 120px 0;

    background: linear-gradient(135deg,
            #6C6C6B 0%,
            #555555 100%);

    position: relative;

    overflow: hidden;
}

.about-corporate::before {

    content: "";

    position: absolute;

    width: 450px;

    height: 450px;

    border-radius: 50%;

    background: rgba(207, 174, 14, .08);

    top: -150px;

    right: -150px;
}

.about-image-wrapper {

    position: relative;
}

.about-image-wrapper img {

    width: 100%;

    border-radius: 20px;

    box-shadow: 0 25px 60px rgba(0, 0, 0, .25);
}

.about-badge {

    position: absolute;

    bottom: 25px;

    right: -20px;

    background: #CFAE0E;

    color: white;

    padding: 20px 25px;

    border-radius: 12px;

    display: flex;

    align-items: center;

    gap: 15px;

    box-shadow: 0 15px 40px rgba(0, 0, 0, .25);
}

.about-badge i {

    font-size: 2rem;
}

.about-subtitle {

    color: #CFAE0E;

    font-weight: 700;

    letter-spacing: 3px;

    display: block;

    margin-bottom: 15px;
}

.about-title {

    color: white;

    font-size: 3rem;

    font-weight: 800;

    margin-bottom: 30px;

    line-height: 1.2;
}

.about-description {

    color: #e5e5e5;

    line-height: 1.9;

    margin-bottom: 20px;

    font-size: 1.05rem;
}

.about-features {

    margin-top: 35px;

    display: grid;

    grid-template-columns: repeat(2, 1fr);

    gap: 15px;
}

.feature {

    background: rgba(255, 255, 255, .08);

    border: 1px solid rgba(255, 255, 255, .08);

    border-radius: 10px;

    padding: 15px;

    display: flex;

    align-items: center;

    gap: 12px;

    color: white;

    transition: .3s;
}

.feature:hover {

    background: #CFAE0E;

    transform: translateY(-5px);
}

.feature i {

    font-size: 1.2rem;

    color: #CFAE0E;
}

.feature:hover i {

    color: white;
}

.mvv-section {

    padding: 120px 0;

    background: #f8f8f8;

    position: relative;
}

.mvv-card {

    background: white;

    padding: 45px;

    border-radius: 20px;

    height: 100%;

    box-shadow: 0 15px 40px rgba(0, 0, 0, .08);

    transition: .4s;

    border-top: 5px solid #CFAE0E;
}

.mvv-card:hover {

    transform: translateY(-10px);

    box-shadow: 0 25px 60px rgba(0, 0, 0, .12);
}

.mvv-icon {

    width: 90px;

    height: 90px;

    background: #CFAE0E;

    border-radius: 50%;

    display: flex;

    align-items: center;

    justify-content: center;

    margin-bottom: 25px;
}

.mvv-icon i {

    color: white;

    font-size: 35px;
}

.mvv-card h3 {

    font-size: 2rem;

    font-weight: 700;

    color: #222;

    margin-bottom: 20px;
}

.mvv-card p {

    color: #666;

    line-height: 1.9;
}

.values-container {

    margin-top: 80px;
}

.values-title {

    font-size: 2.5rem;

    font-weight: 800;

    color: #222;
}

.value-card {

    background: white;

    border-radius: 15px;

    padding: 30px 15px;

    text-align: center;

    height: 100%;

    transition: .4s;

    box-shadow: 0 10px 30px rgba(0, 0, 0, .06);
}

.value-card:hover {

    background: #CFAE0E;

    transform: translateY(-8px);
}

.value-card i {

    font-size: 2rem;

    color: #CFAE0E;

    margin-bottom: 15px;

    transition: .3s;
}

.value-card span {

    display: block;

    font-weight: 700;

    color: #333;
}

.value-card:hover i,
.value-card:hover span {

    color: white;
}

.electrostatic-section {

    padding: 120px 0;

    background: #fff;
}

.electro-text {

    color: #666;

    line-height: 1.9;

    margin-bottom: 20px;
}

.electro-image img {

    width: 100%;

    border-radius: 20px;

    box-shadow: 0 20px 50px rgba(0, 0, 0, .15);
}

.warning-box {

    margin-top: 25px;

    background: #fff8dd;

    border-left: 5px solid #CFAE0E;

    padding: 20px;

    border-radius: 10px;

    display: flex;

    gap: 15px;

    align-items: flex-start;
}

.warning-box i {

    color: #CFAE0E;

    font-size: 1.3rem;
}

.benefits-section {

    padding: 120px 0;

    background: #f8f8f8;
}

.benefit-card {

    background: white;

    padding: 35px 25px;

    text-align: center;

    border-radius: 15px;

    transition: .4s;

    height: 100%;

    box-shadow: 0 10px 25px rgba(0, 0, 0, .05);
}

.benefit-card:hover {

    background: #CFAE0E;

    transform: translateY(-8px);
}

.benefit-card i {

    font-size: 2.2rem;

    color: #CFAE0E;

    margin-bottom: 20px;
}

.benefit-card:hover i,
.benefit-card:hover h5 {

    color: white;
}

.applications-section {

    padding: 120px 0;

    background: #6C6C6B;
}

.applications-section .section-title {

    color: white;
}

.applications-grid {

    display: grid;

    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));

    gap: 20px;
}

.app-item {

    background: white;

    padding: 30px;

    border-radius: 15px;

    text-align: center;

    transition: .4s;
}

.app-item:hover {

    background: #CFAE0E;

    color: white;

    transform: translateY(-8px);
}

.app-item i {

    font-size: 2.3rem;

    color: #CFAE0E;

    margin-bottom: 15px;

    display: block;
}

.app-item:hover i {

    color: white;
}

.app-item span {

    font-weight: 700;
}

/*======================================
SECCIONES GENERALES
======================================*/

.services-premium,
.process-section,
.sectors-section,
.advantages-section {

    padding: 120px 0;
}

.section-subtitle {

    display: inline-block;

    color: #CFAE0E;

    font-weight: 700;

    letter-spacing: 3px;

    text-transform: uppercase;

    margin-bottom: 15px;
}

.section-title {

    font-size: 3rem;

    font-weight: 700;

    color: #222;

    margin-bottom: 20px;
}

.section-description {

    max-width: 850px;

    margin: auto;

    color: #666;

    line-height: 1.9;
}

/*======================================
SERVICIOS
======================================*/

.services-premium {

    background: #f8f8f8;
}

.service-box {

    background: white;

    padding: 35px;

    border-radius: 20px;

    display: flex;

    align-items: flex-start;

    gap: 25px;

    height: 100%;

    transition: .4s;

    box-shadow: 0 15px 40px rgba(0, 0, 0, .07);

    border-left: 5px solid transparent;
}

.service-box:hover {

    transform: translateY(-10px);

    border-left: 5px solid #CFAE0E;

    box-shadow: 0 20px 60px rgba(0, 0, 0, .12);
}

.service-icon {

    min-width: 80px;

    width: 80px;

    height: 80px;

    background: #CFAE0E;

    border-radius: 50%;

    display: flex;

    align-items: center;

    justify-content: center;
}

.service-icon i {

    font-size: 2rem;

    color: white;
}

.service-box h3 {

    font-size: 1.5rem;

    margin-bottom: 15px;

    color: #222;

    font-weight: 700;
}

.service-box p {

    color: #666;

    line-height: 1.8;

    margin: 0;
}

/*======================================
PROCESO
======================================*/

.process-section {

    background: #6C6C6B;
}

.process-section .section-title {

    color: white;
}

.process-card {

    background: white;

    padding: 40px 30px;

    border-radius: 20px;

    text-align: center;

    height: 100%;

    transition: .4s;

    position: relative;

    overflow: hidden;
}

.process-card:hover {

    transform: translateY(-10px);
}

.process-card span {

    width: 70px;

    height: 70px;

    background: #CFAE0E;

    color: white;

    display: flex;

    align-items: center;

    justify-content: center;

    border-radius: 50%;

    margin: auto auto 20px;

    font-size: 1.5rem;

    font-weight: 700;
}

.process-card h4 {

    font-size: 1.4rem;

    margin-bottom: 15px;

    color: #222;
}

.process-card p {

    color: #666;

    line-height: 1.8;
}

/*======================================
SECTORES
======================================*/

.sectors-section {

    background: white;
}

.sector-card {

    background: #fff;

    border-radius: 20px;

    padding: 40px 25px;

    text-align: center;

    height: 100%;

    transition: .4s;

    box-shadow: 0 15px 40px rgba(0, 0, 0, .06);
}

.sector-card:hover {

    background: #CFAE0E;

    transform: translateY(-10px);
}

.sector-card i {

    font-size: 3rem;

    color: #CFAE0E;

    margin-bottom: 20px;

    transition: .4s;
}

.sector-card h5 {

    font-size: 1.2rem;

    font-weight: 700;

    margin: 0;

    transition: .4s;
}

.sector-card:hover i,
.sector-card:hover h5 {

    color: white;
}

/*======================================
VENTAJAS
======================================*/

.advantages-section {

    background: linear-gradient(135deg,
            #f8f8f8,
            #ffffff);
}

.advantages-section img {

    border-radius: 20px;

    box-shadow: 0 25px 60px rgba(0, 0, 0, .15);
}

.advantage-list {

    list-style: none;

    padding: 0;

    margin-top: 30px;
}

.advantage-list li {

    background: white;

    padding: 18px 25px;

    margin-bottom: 15px;

    border-left: 5px solid #CFAE0E;

    border-radius: 10px;

    color: #555;

    font-weight: 500;

    transition: .3s;

    box-shadow: 0 10px 25px rgba(0, 0, 0, .05);
}

.advantage-list li:hover {

    transform: translateX(10px);

    background: #fffdf5;
}

/*======================================
ANIMACIONES
======================================*/

.service-box,
.process-card,
.sector-card,
.advantage-list li {

    transition: all .4s ease;
}

/*======================================
RESPONSIVE
======================================*/

@media(max-width:991px) {

    .section-title {

        font-size: 2.3rem;
    }

    .service-box {

        flex-direction: column;

        text-align: center;
    }

    .service-icon {

        margin: auto;
    }

    .advantages-section img {

        margin-bottom: 40px;
    }
}

@media(max-width:768px) {

    .section-title {

        font-size: 2rem;
    }

    .services-premium,
    .process-section,
    .sectors-section,
    .advantages-section {

        padding: 80px 0;
    }
}

/*====================================
PROYECTOS PREMIUM INKAMAR
====================================*/

.projects-premium {

    padding: 120px 0;

    background: linear-gradient(180deg,
            #f8f8f8 0%,
            #ffffff 100%);
}

/*====================================
TÍTULOS
====================================*/

.section-subtitle {

    display: inline-block;

    color: #CFAE0E;

    font-weight: 700;

    letter-spacing: 3px;

    font-size: .9rem;

    margin-bottom: 15px;
}

.section-title {

    font-size: 3rem;

    font-weight: 700;

    color: #222;

    margin-bottom: 20px;
}

.section-description {

    max-width: 850px;

    margin: auto;

    color: #666;

    line-height: 1.8;

    font-size: 1.05rem;
}

/*====================================
GRID
====================================*/

.projects-premium .row {

    margin: 0;
}

/*====================================
TARJETAS
====================================*/

.project-item {

    position: relative;

    overflow: hidden;

    height: 450px;

    min-height: 450px;

    max-height: 450px;

    background: #000;

    cursor: pointer;

    transition: .5s;

    border: 1px solid rgba(255, 255, 255, .05);
}

/*====================================
IMAGEN
====================================*/

.project-item img {

    width: 100%;

    height: 100%;

    object-fit: cover;

    display: block;

    transition: transform .8s ease;
}

/*====================================
CAJA INFERIOR
====================================*/

.project-info {

    position: absolute;

    bottom: 0;

    left: 0;

    width: 100%;

    height: 120px;

    background: linear-gradient(to top,
            rgba(0, 0, 0, .97),
            rgba(0, 0, 0, .88));

    border-top: 4px solid #CFAE0E;

    padding: 15px 22px;

    display: flex;

    flex-direction: column;

    justify-content: center;

    z-index: 5;
}

/*====================================
CATEGORÍA
====================================*/

.project-info span {

    color: #CFAE0E;

    font-size: .75rem;

    font-weight: 700;

    text-transform: uppercase;

    letter-spacing: 2px;

    margin-bottom: 8px;

    display: block;
}

/*====================================
TÍTULO
====================================*/

.project-info h4 {

    color: #fff;

    margin: 0;

    font-size: 1.1rem;

    font-weight: 700;

    line-height: 1.4;

    overflow: hidden;

    display: -webkit-box;

    -webkit-line-clamp: 2;

    -webkit-box-orient: vertical;

    text-shadow:
        0 2px 8px rgba(0, 0, 0, .5);
}

/*====================================
HOVER
====================================*/

.project-item:hover img {

    transform: scale(1.10);
}

.project-item:hover {

    z-index: 2;
}

/*====================================
EFECTO BRILLO
====================================*/

.project-item::before {

    content: "";

    position: absolute;

    top: 0;

    left: -120%;

    width: 70%;

    height: 100%;

    background: linear-gradient(90deg,
            transparent,
            rgba(255, 255, 255, .20),
            transparent);

    z-index: 3;

    transition: .8s;
}

.project-item:hover::before {

    left: 120%;
}

/*====================================
RESPONSIVE TABLET
====================================*/

@media (max-width: 991px) {

    .section-title {

        font-size: 2.3rem;
    }

    .project-item {

        height: 380px;

        min-height: 380px;

        max-height: 380px;
    }

    .project-info {

        height: 110px;
    }
}

/*====================================
RESPONSIVE MOBILE
====================================*/

@media (max-width: 768px) {

    .projects-premium {

        padding: 80px 0;
    }

    .section-title {

        font-size: 2rem;
    }

    .project-item {

        height: 320px;

        min-height: 320px;

        max-height: 320px;
    }

    .project-info {

        height: 100px;

        padding: 15px;
    }

    .project-info h4 {

        font-size: .95rem;
    }
}

/*====================================
CONTACTO PREMIUM INKAMAR
====================================*/

.contact-section {

    padding: 120px 0 0;

    background: #6C6C6B;
}

.contact-subtitle {

    color: #CFAE0E;

    font-weight: 700;

    letter-spacing: 3px;

    display: block;

    margin-bottom: 10px;
}

.contact-title {

    color: #fff;

    font-size: 3rem;

    font-weight: 700;

    margin-bottom: 20px;
}

.contact-description {

    color: rgba(255, 255, 255, .85);

    max-width: 800px;

    margin: auto;
}

/* CAJAS */

.contact-info,
.contact-form-box {

    background: #fff;

    border-radius: 20px;

    padding: 45px;

    height: 100%;

    box-shadow: 0 20px 40px rgba(0, 0, 0, .12);
}

.contact-info h3,
.contact-form-box h3 {

    font-weight: 700;

    margin-bottom: 25px;

    color: #222;
}

/* ITEMS */

.contact-item {

    display: flex;

    gap: 20px;

    margin-top: 25px;
}

.contact-item i {

    width: 55px;

    height: 55px;

    background: #CFAE0E;

    color: #fff;

    border-radius: 50%;

    display: flex;

    align-items: center;

    justify-content: center;

    flex-shrink: 0;
}

.contact-item strong {

    display: block;

    color: #222;

    margin-bottom: 5px;
}

.contact-item p {

    margin: 0;

    color: #666;
}

.contact-item a {

    text-decoration: none;

    color: #6C6C6B;

    font-weight: 600;
}

/* FORMULARIO */

.form-control {

    height: 58px;

    border-radius: 12px;

    border: 1px solid #ddd;
}

textarea.form-control {

    height: auto;
}

.form-control:focus {

    border-color: #CFAE0E;

    box-shadow: 0 0 0 .2rem rgba(207, 174, 14, .15);
}

/* BOTON */

.btn-contact {

    background: #CFAE0E;

    color: #fff;

    border: none;

    padding: 15px 35px;

    border-radius: 50px;

    font-weight: 700;

    transition: .4s;
}

.btn-contact:hover {

    background: #b99700;

    transform: translateY(-3px);
}

/* MAPA */

.contact-map {

    margin-top: 80px;
}

.contact-map iframe {

    width: 100%;

    height: 500px;

    border: 0;

    display: block;

    filter: grayscale(20%);
}

/* RESPONSIVE */

@media(max-width:768px) {

    .contact-section {

        padding: 80px 0 0;
    }

    .contact-title {

        font-size: 2rem;
    }

    .contact-info,
    .contact-form-box {

        padding: 30px;
    }

    .contact-map iframe {

        height: 350px;
    }
}