/* Colors Variables */
:root {
    --industrial-yellow: #afcb3a;
    --industrial-yellow-hover: #afcb3a;
    --industrial-dark: #111827;
    --industrial-gray: #1F2937;
    --industrial-light: #F3F4F6;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Titillium Web', sans-serif;
    background-color: var(--industrial-light);
    color: #333;
    -webkit-font-smoothing: antialiased;
    padding-top: 100px;
    /* For fixed navbar */
}

h1,
h2,
h3,
h4,
h5,
h6,
.font-heading {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    margin-top: 0;
}

.text-yellow {
    color: var(--industrial-yellow);
}

.text-dark {
    color: var(--industrial-dark);
}

.text-white {
    color: #fff;
}

.bg-yellow {
    background-color: var(--industrial-yellow);
}

.bg-dark {
    background-color: var(--industrial-dark);
    color: #fff;
}

.bg-light {
    background-color: var(--industrial-light);
}

.bg-white {
    background-color: #fff;
}

.uppercase {
    text-transform: uppercase;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: var(--industrial-dark);
}

::-webkit-scrollbar-thumb {
    background: var(--industrial-yellow);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--industrial-yellow-hover);
}

/* Buttons */
.btn-primary-custom {
    background-color: var(--industrial-yellow);
    color: var(--industrial-dark);
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    text-transform: uppercase;
    border: none;
    border-radius: 3px;
    transition: all 0.3s ease;
    padding: 12px 24px;
    letter-spacing: 1px;
}

.btn-primary-custom:hover,
.btn-primary-custom:focus {
    background-color: var(--industrial-yellow-hover);
    color: var(--industrial-dark);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    transform: translateY(-2px);
}

.btn-outline-custom {
    background-color: transparent;
    color: #fff;
    border: 2px solid #fff;
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    text-transform: uppercase;
    border-radius: 3px;
    transition: all 0.3s ease;
    padding: 10px 24px;
    letter-spacing: 1px;
}

.btn-outline-custom:hover {
    background-color: #fff;
    color: var(--industrial-dark);
    border-color: #fff;
}

.btn-dark-custom {
    background-color: var(--industrial-dark);
    color: #fff;
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    text-transform: uppercase;
    border: none;
    border-radius: 3px;
    transition: all 0.3s ease;
    padding: 12px 24px;
}

.btn-dark-custom:hover {
    background-color: var(--industrial-gray);
    color: #fff;
}

/* Navbar */
.custom-navbar {
    background-color: var(--industrial-dark);
    border: none;
    padding: 10px 0;
    transition: padding 0.3s ease;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
    margin-bottom: 0;
    min-height: 80px;
}

.custom-navbar.scrolled {
    padding: 5px 0;
}

.custom-navbar .navbar-brand {
    height: auto;
    padding: 0 15px;
    display: flex;
    align-items: center;
    min-height: 85px;
    /* Altura para el logo de 65px + padding */
}

.custom-navbar .navbar-toggle {
    border-color: #333;
    margin-top: 25px;
    /* Centrar toggle en móvil */
}

.custom-navbar .navbar-toggle .icon-bar {
    background-color: #fff;
}

.nav-logo {
    height: 60px;
    padding: 0 10px;
    border-radius: 4px;
    margin-top: 0;
    transition: transform 0.3s;
}

.nav-logo:hover {
    transform: scale(1.05);
}

.custom-nav-links>li>a {
    color: #fff !important;
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    text-transform: uppercase;
    font-size: 13px;
    letter-spacing: 1px;
    transition: color 0.3s;
    padding-top: 36px;
    padding-bottom: 36px;
}

/* Ajuste de espacio en menú móvil */
@media (max-width: 767px) {
    .custom-nav-links>li>a {
        padding-top: 15px !important;
        padding-bottom: 15px !important;
    }

    .custom-navbar .navbar-toggle {
        margin-top: 18px;
    }
}

.custom-nav-links>li>a:hover,
.custom-nav-links>li.active>a,
.custom-nav-links>li.open>a,
.custom-nav-links>li.open>a:hover,
.custom-nav-links>li.open>a:focus {
    color: var(--industrial-yellow) !important;
    background-color: rgba(255, 255, 255, 0.05) !important;
}

/* Dropdown Custom Styles */
.dropdown-menu {
    background-color: var(--industrial-dark);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 0;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    padding: 10px 0;
    min-width: 200px;
    margin-top: 0;
}

.dropdown-menu>li>a {
    color: #ccc !important;
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    text-transform: uppercase;
    font-size: 12px;
    letter-spacing: 1px;
    padding: 12px 20px;
    transition: all 0.3s ease;
}

.dropdown-menu>li>a:hover,
.dropdown-menu>li>a:focus {
    background-color: var(--industrial-yellow) !important;
    color: var(--industrial-dark) !important;
    padding-left: 25px;
}

/* Caret Color */
.navbar-nav .dropdown .caret {
    border-top-color: var(--industrial-yellow);
    border-bottom-color: var(--industrial-yellow);
    margin-left: 5px;
}

.nav-btn-contact {
    background-color: var(--industrial-yellow);
    color: var(--industrial-dark) !important;
    border-radius: 3px;
    margin-top: 22px;
    padding: 10px 20px !important;
    margin-left: 15px;
    margin-right: 25px;
    /* Espacio hacia los iconos de redes */
    font-weight: 700 !important;
}

.nav-btn-contact:hover {
    background-color: var(--industrial-yellow-hover);
}

/* Social Links in Navbar */
.nav-social-item {
    display: inline-block;
    vertical-align: middle;
}

.custom-nav-links li.nav-social-item a.nav-social-link {
    background-color: transparent !important;
    color: #ffffff !important;
    width: 35px;
    height: 35px;
    display: flex !important;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-size: 16px;
    margin-top: 25px;
    margin-left: 10px;
    padding: 0 !important;
    transition: all 0.3s ease;
    box-shadow: none;
    text-decoration: none !important;
    border: 1px solid #ffffff;
}

.custom-nav-links li.nav-social-item a.nav-social-link i {
    color: #ffffff !important;
    transition: all 0.3s ease;
}

.custom-nav-links li.nav-social-item a.nav-social-link:hover {
    background-color: transparent !important;
    color: var(--industrial-yellow) !important;
    transform: none;
    box-shadow: none;
    border: 1px solid var(--industrial-yellow);
}

.custom-nav-links li.nav-social-item a.nav-social-link:hover i {
    color: var(--industrial-yellow) !important;
    text-shadow: 0 0 8px rgba(175, 203, 58, 0.8);
}

@media (max-width: 767px) {
    .nav-social-item {
        display: inline-block;
        margin: 10px 5px;
    }

    .nav-social-link {
        margin-top: 0;
        margin-left: 0;
    }
}

/* Sections global */
.section-padding {
    padding: 80px 0;
}

.section-title {
    font-weight: 900;
    text-transform: uppercase;
    color: white;
    margin-bottom: 10px;
}

.section-title-line {
    width: 60px;
    height: 4px;
    background: var(--industrial-yellow);
    margin-bottom: 30px;
}

.section-title-center .section-title-line {
    margin: 0 auto 30px auto;
}

/* Hero */
.hero-bg {
    background-image: url('https://arquetipo.com.ar/baul/files/1773867851-inicio.png');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    position: relative;
    padding: 150px 0;
    min-height: 80vh;
    display: flex;
    align-items: center;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(17, 24, 39, 0.45) 0%, rgba(17, 24, 39, 0.8) 50%, rgba(250, 204, 21, 0.2) 100%);
}

.hero-content {
    position: relative;
    z-index: 2;
    color: #fff;
}

.hero-badge {
    display: inline-block;
    background: var(--industrial-yellow);
    color: var(--industrial-dark);
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    padding: 5px 15px;
    text-transform: uppercase;
    font-size: 12px;
    margin-bottom: 20px;
}

.hero-title {
    font-size: 52px;
    font-weight: 900;
    margin-bottom: 20px;
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 36px;
    }

    .hero-bg {
        background-image: none !important;
        background-attachment: scroll !important;
        overflow: hidden;
    }

    .hero-bg::before,
    .hero-bg::after {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background-size: cover;
        background-position: center;
        z-index: 0;
    }

    .hero-bg::before {
        background-image: url('https://arquetipo.com.ar/baul/files/1774634373-grua.jpg');
        animation: heroMobileFade1 8s infinite ease-in-out;
    }

    .hero-bg::after {
        background-image: url('https://arquetipo.com.ar/baul/files/1774634411-tractor.jpg');
        animation: heroMobileFade2 8s infinite ease-in-out;
    }

    .hero-overlay {
        z-index: 1;
    }

    .hero-content {
        position: relative;
        z-index: 2;
    }
}

@keyframes heroMobileFade1 {

    0%,
    45% {
        opacity: 1;
    }

    55%,
    100% {
        opacity: 0;
    }
}

@keyframes heroMobileFade2 {

    0%,
    45% {
        opacity: 0;
    }

    55%,
    100% {
        opacity: 1;
    }
}

/* About Preview */
.img-offset {
    position: relative;
}

.img-offset::before {
    content: '';
    position: absolute;
    top: 15px;
    left: 15px;
    right: -15px;
    bottom: -15px;
    background-color: var(--industrial-yellow);
    z-index: 0;
    border-radius: 4px;
}

.img-offset img {
    position: relative;
    z-index: 1;
    border-radius: 4px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

/* ── Split Categories (Senior Designer Modern Style) ── */
.row.no-gutters {
    margin-right: 0;
    margin-left: 0;
}

.row.no-gutters>[class*="col-"] {
    padding-right: 0;
    padding-left: 0;
}

.split-category-section {
    position: relative;
    overflow: hidden;
}

.split-item {
    position: relative;
    height: 75vh;
    min-height: 550px;
    overflow: hidden;
    cursor: pointer;
}

.split-img-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    transition: transform 1.2s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.split-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.split-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, rgba(17, 24, 39, 0) 0%, rgba(17, 24, 39, 0.2) 40%, rgba(17, 24, 39, 0.85) 100%);
    transition: all 0.5s ease;
    z-index: 2;
}

.split-content {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 60px;
    z-index: 3;
    transition: all 0.5s ease;
}

.split-badge {
    display: inline-block;
    background: var(--industrial-yellow);
    color: var(--industrial-dark);
    font-weight: 800;
    font-size: 12px;
    padding: 5px 15px;
    border-radius: 50px;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 20px;
    transform: translateY(20px);
    opacity: 0;
    transition: all 0.4s ease;
}

.split-title {
    font-size: 56px;
    color: #fff;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: -1px;
    line-height: 1;
    margin: 0;
}

.split-item:hover .split-img-wrapper {
    transform: scale(1.1);
}

.split-item:hover .split-overlay {
    background: linear-gradient(180deg, rgba(17, 24, 39, 0) 0%, rgba(17, 24, 39, 0) 20%, rgba(17, 24, 39, 0.95) 100%);
}

.split-item:hover .split-badge {
    transform: translateY(0);
    opacity: 1;
}

.split-item:hover .split-content {
    padding-bottom: 80px;
}

.split-gruas .split-overlay {
    background: linear-gradient(180deg, rgba(14, 116, 144, 0) 0%, rgba(17, 24, 39, 0.3) 40%, rgba(17, 24, 39, 0.9) 100%);
}

@media (max-width: 991px) {
    .split-item {
        height: 85vw;
        /* Casi cuadrado para mostrar mejor la maquinaria en móviles */
        min-height: 350px;
    }

    .split-title {
        font-size: 38px;
        line-height: 0.9;
    }

    .split-content {
        padding: 25px;
    }
}

/* Product Cards */

.product-card {
    display: flex;
    flex-direction: column;
    background: #fff;
    border: 1px solid #eee;
    border-radius: 8px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.product-img-wrapper {
    width: 100%;
    height: 250px;
    /* Altura fija para consistencia */
    overflow: hidden;
    position: relative;
    background: #fdfdfd;
}

.product-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    /* Para no deformar ni cortar la maquinaria */
    padding: 15px;
    transition: transform 0.5s ease;
}

.product-card:hover .product-img-wrapper img {
    transform: scale(1.05);
}

.product-body {
    padding: 20px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.product-title {
    font-weight: 700;
    font-size: 20px;
    color: var(--industrial-dark);
}

.product-desc {
    color: #666;
    flex-grow: 1;
    margin-bottom: 20px;
}

/* Page Transition */
.page-transition {
    opacity: 0;
    transition: opacity 0.3s ease;
}

.page-transition.active {
    opacity: 1;
}

/* Map specific styles */
.map-container {
    position: relative;
    background: #EBF4FA;
    border-radius: 8px;
    min-height: 500px;
    box-shadow: inset 0 0 10px rgba(0, 0, 0, 0.05);
    display: flex;
    justify-content: center;
    align-items: center;
}

.map-marker {
    position: absolute;
    width: 20px;
    height: 20px;
    background-color: var(--industrial-yellow);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    cursor: pointer;
    border: 3px solid var(--industrial-dark);
    transition: all 0.3s ease;
    z-index: 10;
}

.map-marker:hover {
    transform: translate(-50%, -50%) scale(1.2);
    background-color: #fff;
    border-color: var(--industrial-yellow);
    z-index: 20;
}

.distributor-card {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--industrial-dark);
    color: white;
    padding: 15px;
    border-radius: 4px;
    width: 220px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
    border-bottom: 3px solid var(--industrial-yellow);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease, bottom 0.3s ease;
    z-index: 30;
}

.map-marker:hover .distributor-card {
    opacity: 1;
    pointer-events: auto;
    bottom: 35px;
}

.distributor-card::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    border-width: 10px 10px 0;
    border-style: solid;
    border-color: var(--industrial-yellow) transparent transparent transparent;
}

/* Footer */
.custom-footer {
    background-color: var(--industrial-dark);
    color: #ccc;
    padding: 60px 0 20px 0;
    border-top: 4px solid var(--industrial-yellow);
}

.footer-logo {
    height: 60px;
    padding: 0 10px;
    border-radius: 4px;
    margin-top: 0;
    transition: transform 0.3s;
    margin-bottom: 20px;
}

.footer-heading {
    color: #fff;
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 20px;
    padding-bottom: 10px;
    position: relative;
}

.footer-heading::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 2px;
    background: var(--industrial-yellow);
}

.footer-links li,
.footer-contact li {
    margin-bottom: 15px;
}

.footer-links a {
    color: #ccc;
    transition: color 0.3s;
}

.footer-links a:hover {
    color: var(--industrial-yellow);
    text-decoration: none;
    padding-left: 5px;
}

.footer-contact i {
    width: 20px;
}
.footer-bottom {
    margin-top: 40px;
    padding-top: 20px;
    border-top: 1px solid #333;
    font-size: 13px;
}

.footer-credit {
    margin-left: 15px;
    opacity: 0.7;
    transition: opacity 0.3s ease;
}

.footer-credit:hover {
    opacity: 1;
}

.footer-credit a {
    color: inherit;
    text-decoration: none;
    font-weight: 600;
}

.footer-credit a:hover {
    color: var(--industrial-yellow);
}

.footer-col {
    margin-bottom: 30px;
}

/* Redes Sociales Footer */
.footer-social {
    display: flex;
    gap: 15px;
    margin-top: 25px;
}

.social-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    background-color: transparent;
    color: #ffffff;
    border-radius: 50%;
    font-size: 24px;
    transition: all 0.3s ease;
    border: 1px solid #ffffff;
    box-shadow: none;
    text-decoration: none !important;
}

.social-icon i {
    color: #ffffff;
    transition: all 0.3s ease;
}

.social-icon:hover {
    background-color: transparent;
    color: var(--industrial-yellow);
    transform: none;
    box-shadow: none;
    border: 1px solid var(--industrial-yellow);
}

.social-icon:hover i {
    color: var(--industrial-yellow);
    text-shadow: 0 0 10px rgba(175, 203, 58, 0.8);
}

/* LinkedIn specific on hover if we want original colors, but keeping them themed looks more premium */
/* .social-icon.linkedin:hover { background-color: #0077b5; color: #fff; } */
/* .social-icon.facebook:hover { background-color: #1877f2; color: #fff; } */
/* .social-icon.instagram:hover { background-color: #e4405f; color: #fff; } */

/* Misc Utilities for Bootstrap spacing alternatives */
.mt-30 {
    margin-top: 30px;
}

.mb-30 {
    margin-bottom: 30px;
}

.mb-50 {
    margin-bottom: 50px;
}

.pt-0 {
    padding-top: 0;
}

.text-industrial {
    color: var(--industrial-dark);
}

.bg-gray-light {
    background-color: #f9f9f9;
}

.mt-20 {
    margin-top: 20px;
}

.mt-40 {
    margin-top: 40px;
}

.mb-20 {
    margin-bottom: 20px;
}

.mb-40 {
    margin-bottom: 40px;
}

.bg-abstract {
    background-image: linear-gradient(rgba(243, 244, 246, 0.92), rgba(243, 244, 246, 0.92)), url('../img/abstract-industrial.png');
    background-size: 800px;
    background-attachment: fixed;
    background-position: center;
}

/* Product Cards Enhanced */
.product-card {
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-top: 4px solid var(--industrial-yellow);
    border-radius: 4px;
    overflow: hidden;
    margin-bottom: 30px;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    height: calc(100% - 30px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.product-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
    border-color: var(--industrial-yellow);
}

.product-title {
    transition: color 0.3s;
}

.product-card:hover .product-title {
    color: var(--industrial-yellow-hover);
}

/* Table */
.table-custom {
    background: #fff;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.table-custom th {
    background-color: var(--industrial-dark);
    color: #fff;
    border-bottom: none !important;
}

/* Form inputs border focus */
.form-control:focus {
    border-color: var(--industrial-yellow);
    box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075), 0 0 8px rgba(250, 204, 21, 0.6);
}

.cursor-pointer {
    cursor: pointer;
}

/* ── Industrial Grid ── */
/* Centrado en dispositivos pequeños, alineado a la izquierda en desktop */
.industrial-grid {
    display: flex;
    flex-wrap: wrap;
    align-items: stretch;
    justify-content: center;
}

@media (min-width: 992px) {
    .industrial-grid {
        justify-content: flex-start;
    }
}

/* ── Ficha de Producto (Detalle) ── */
.ficha-section {
    padding: 80px 0 60px;
    background: #fff;
}

.ficha-top {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    gap: 48px;
    margin-bottom: 50px;
}

.ficha-img-col {
    flex: 0 0 44%;
    max-width: 44%;
}

.ficha-img-wrapper {
    background: #fff;
    border: 1px solid #e5e5e5;
    border-radius: 4px;
    padding: 24px;
    text-align: center;
}

.ficha-img-wrapper img {
    max-width: 100%;
    max-height: 420px;
    object-fit: contain;
}

.ficha-info-col {
    flex: 1;
}

.ficha-product-name {
    font-family: 'Montserrat', sans-serif;
    font-weight: 900;
    font-size: 42px;
    /* Reducido de 48px */
    color: #1a1a2e;
    line-height: 1.1;
    margin: 0 0 6px 0;
}

.ficha-product-sub {
    font-size: 18px;
    font-weight: 600;
    color: #555;
    margin-bottom: 22px;
}

.ficha-specs-list {
    list-style: none;
    padding: 0;
    margin: 0 0 28px 0;
}

.ficha-specs-list li {
    font-size: 15px;
    color: #333;
    padding: 6px 0;
    border-bottom: 1px solid #f0f0f0;
}

.ficha-specs-list li:last-child {
    border-bottom: none;
}

.ficha-specs-list li strong {
    color: #1a1a2e;
    font-weight: 700;
}

.ficha-specs-list li::before {
    content: "\2022";
    color: var(--industrial-yellow);
    font-weight: 900;
    margin-right: 8px;
}

.ficha-btns {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
    margin-bottom: 12px;
}

.btn-ficha-primary,
.btn-ficha-outline {
    font-family: 'Montserrat', sans-serif;
    font-weight: 800;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    padding: 13px 28px;
    border-radius: 3px;
    cursor: pointer;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
    text-align: center;
}

.btn-ficha-primary {
    background: var(--industrial-yellow);
    color: #111827;
    border: none;
}

.btn-ficha-outline {
    background: transparent;
    color: var(--industrial-yellow);
    border: 2px solid var(--industrial-yellow);
    padding: 11px 24px;
}

.btn-ficha-primary:hover {
    opacity: 0.85;
    transform: translateY(-2px);
    color: #111827;
}

.btn-ficha-outline:hover {
    background: var(--industrial-yellow);
    color: #111827;
}

/* Botones de WhatsApp */
.btn-whatsapp {
    background-color: #25D366;
    color: #fff;
    border: none;
    font-family: 'Montserrat', sans-serif;
    font-weight: 800;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    padding: 13px 28px;
    border-radius: 3px;
    cursor: pointer;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    transition: all 0.3s ease;
    text-align: center;
}

.btn-whatsapp:hover,
.btn-whatsapp:focus {
    background-color: #128C7E;
    color: #fff;
    text-decoration: none;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(37, 211, 102, 0.3);
}

.btn-whatsapp-catalog {
    background-color: #25D366;
    color: #fff;
    border: none;
    font-weight: 700;
    font-size: 13px;
    padding: 10px 15px;
    border-radius: 4px;
    width: 100%;
    margin-top: 10px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    transition: all 0.3s ease;
    text-decoration: none;
}

.btn-whatsapp-catalog:hover {
    background-color: #128C7E;
    color: #fff;
    text-decoration: none;
}

/* Detail Responsive Overrides */
@media (max-width: 767px) {
    .ficha-top {
        flex-direction: column;
        gap: 30px;
        text-align: center;
    }

    .ficha-img-col {
        flex: 0 0 100%;
        max-width: 100%;
    }

    .ficha-info-col {
        width: 100%;
    }

    .ficha-product-name {
        font-size: 30px;
        /* Reducido de 36px */
    }

    .ficha-specs-list li {
        border-bottom-color: #eee;
        display: flex;
        justify-content: center;
        gap: 5px;
    }

    .ficha-specs-list li::before {
        display: none;
    }

    .ficha-btns {
        flex-direction: column;
        gap: 10px;
    }

    .btn-ficha-primary,
    .btn-ficha-outline {
        width: 100%;
        display: block;
    }

    .ficha-form-row {
        flex-direction: column !important;
        gap: 0 !important;
    }
}

/* ── Ficha Form Styles ── */
.ficha-form-wrapper {
    background: #f8f8f8;
    border: 1px solid #e5e5e5;
    border-radius: 4px;
    padding: 32px 28px 26px;
    margin-top: 10px;
}

.ficha-form-title {
    font-family: 'Montserrat', sans-serif;
    font-weight: 800;
    font-size: 18px;
    color: #1a1a2e;
    margin-top: 0;
    margin-bottom: 6px;
}

.ficha-form-sub {
    font-size: 14px;
    color: #888;
    margin-bottom: 22px;
}

.ficha-input {
    display: block;
    width: 100%;
    border: 1px solid #ddd;
    border-radius: 3px;
    padding: 10px 14px;
    font-size: 14px;
    color: #333;
    background: #fff;
    box-shadow: none !important;
    transition: border-color .2s;
    margin-bottom: 14px;
    font-family: 'Titillium Web', sans-serif;
}

.ficha-input:focus {
    border-color: var(--industrial-yellow);
    outline: none;
}

.ficha-form-row {
    display: flex;
    gap: 14px;
}

.ficha-form-row .ficha-input {
    flex: 1;
}

.btn-form-submit {
    width: 100%;
    background: #1a1a2e;
    color: #fff;
    font-family: 'Montserrat', sans-serif;
    font-weight: 800;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
    border: none;
    padding: 14px;
    border-radius: 3px;
    cursor: pointer;
    margin-top: 4px;
    transition: background .2s;
}

.btn-form-submit:hover {
    background: #000;
}

/* ── Model Title in Description ── */
.ficha-model-desc-title {
    font-family: 'Montserrat', sans-serif;
    font-weight: 800;
    font-size: 32px !important;
    /* Más chico por pedido del usuario */
    color: #111827 !important;
    margin-bottom: 15px;
    line-height: 1.2;
}

@media (max-width: 767px) {
    .ficha-model-desc-title {
        font-size: 26px !important;
        text-align: center;
    }
}

/* ── Volver al Catálogo ── */
.btn-volver {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    background: #fdfdfd;
    border: 1px solid #eee;
    border-radius: 4px;
    color: #64748b;
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    text-decoration: none;
    transition: all 0.3s ease;
    margin: 40px auto 10px;
}

.btn-volver:hover {
    background: #f1f5f9;
    border-color: #cbd5e1;
    color: #1e293b;
    text-decoration: none;
    transform: translateX(-3px);
}

.btn-volver i {
    font-size: 14px;
    transition: transform 0.3s ease;
}

.btn-volver:hover i {
    transform: translateX(-2px);
}

.col-sm-6 div:hover i {
    transform: scale(1.15) rotate(15deg);
}

.col-sm-6 div i {
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

/* -- Quienes Somos Specialized Sections -- */
.zoomlion-global-section {
    background: linear-gradient(135deg, #ffffff 0%, #f9f9f9 100%);
    border-bottom: 1px solid #eee;
}

.pampa-local-section {
    background: linear-gradient(135deg, var(--industrial-dark) 0%, #1a1a2e 100%);
    border-top: 4px solid var(--industrial-yellow);
    box-shadow: inset 0 20px 40px rgba(0, 0, 0, 0.3);
}

.pampa-local-section .section-title {
    text-shadow: 0 4px 10px rgba(0, 0, 0, 0.5);
}

.value-card {
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275), box-shadow 0.4s ease;
}

.value-card:hover {
    transform: translateY(-10px);
}

/* Scroll to Top Button */
.scroll-top-btn {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background-color: var(--industrial-yellow);
    color: var(--industrial-dark);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    cursor: pointer;
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    border: none;
    font-size: 20px;
}

.scroll-top-btn.visible {
    opacity: 1;
    visibility: visible;
}

.scroll-top-btn:hover {
    background-color: #fff !important;
    transform: translateY(-5px);
    color: var(--industrial-yellow) !important;
}

/* Logo height for mobile view */
@media (max-width: 767px) {

    .nav-logo {
        height: 38px !important;
    }

    .footer-logo {
        height: 50px !important;
    }
}

/* "Aquí se construye" image — responsive */
.construye-img {
    min-height: 520px;
    object-fit: cover;
}

@media (max-width: 767px) {
    .construye-img {
        min-height: 220px !important;
        height: 220px;
        object-fit: cover;
    }
}
/* -- Captcha Styles -- */
.captcha-wrapper {
    margin-bottom: 20px;
    padding: 20px;
    background: #f4f4f4;
    border: 1px solid #e5e5e5;
    border-radius: 4px;
}

.captcha-label {
    display: block;
    color: #1a1a2e;
    font-family: 'Montserrat', sans-serif;
    font-weight: 800;
    font-size: 12px;
    text-transform: uppercase;
    margin-bottom: 12px;
    text-align: center;
    letter-spacing: 1px;
}

.captcha-row {
    display: flex;
    align-items: center;
    gap: 15px;
}

.validacion {
    height: 42px;
    border-radius: 4px;
}

.captcha-input {
    margin-bottom: 0 !important;
    height: 42px !important;
}

.captcha-input::placeholder {
    color: #999;
}
