/* ==================================================
   RESET GENERAL
================================================== */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --color-orange: #ff7a18;
    --color-orange-dark: #e96505;
    --color-green: #25d366;
    --color-dark: #111111;
    --color-gray: #5c6575;
    --color-light: #ffffff;
    --color-bg: #f7f7f7;
    --shadow: 0 18px 45px rgba(15, 23, 42, 0.08);
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: Arial, Helvetica, sans-serif;
    background: var(--color-bg);
    color: var(--color-dark);
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    display: block;
}

.container {
    width: min(1180px, 92%);
    margin: 0 auto;
}

/* ==================================================
   HEADER
================================================== */

.header {
    width: 100%;
    height: 86px;
    background: #ffffff;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 1000;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
    transition: 0.3s ease;
}

.header.scrolled {
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.10);
}

.header-container {
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}

.logo img {
    width: 210px;
    height: auto;
}

.nav {
    flex: 1;
    display: flex;
    justify-content: center;
}

.nav-list {
    display: flex;
    align-items: center;
    gap: 32px;
}

.nav-list a,
.dropdown-btn {
    font-size: 15px;
    font-weight: 700;
    color: #1f1f1f;
    transition: 0.3s ease;
}

.nav-list a:hover,
.nav-list a.active,
.dropdown-btn:hover,
.active-dropdown {
    color: var(--color-orange);
}

.dropdown {
    position: relative;
}

.dropdown-btn {
    background: transparent;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 8px;
    font-family: inherit;
}

.dropdown-btn i {
    font-size: 12px;
    transition: 0.3s ease;
}

.dropdown-menu {
    position: absolute;
    top: 38px;
    left: 0;
    width: 190px;
    background: #ffffff;
    border-radius: 14px;
    box-shadow: var(--shadow);
    padding: 10px 0;
    opacity: 0;
    visibility: hidden;
    transform: translateY(12px);
    transition: 0.3s ease;
}

.dropdown-menu li a {
    display: block;
    padding: 12px 18px;
    font-size: 14px;
    color: #222222;
}

.dropdown-menu li a:hover {
    background: rgba(255, 122, 24, 0.09);
    color: var(--color-orange);
}

.dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown:hover .dropdown-btn i {
    transform: rotate(180deg);
}

.login-btn {
    background: var(--color-orange);
    color: #ffffff;
    padding: 11px 16px;
    border-radius: 10px;
    font-size: 14px;
    font-weight: 800;
    display: inline-flex;
    align-items: center;
    gap: 7px;
    transition: 0.3s ease;
    box-shadow: 0 6px 16px rgba(255, 122, 24, 0.22);
}

.login-btn:hover {
    background: var(--color-orange-dark);
    transform: translateY(-2px);
}

.menu-toggle {
    display: none;
    background: transparent;
    border: none;
    color: var(--color-dark);
    font-size: 26px;
    cursor: pointer;
}

/* ==================================================
   HERO PRINCIPAL INDEX
================================================== */

.hero {
    position: relative;
    min-height: 680px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding-top: 86px;
    overflow: hidden;
    background: #111111;
}

.hero-video {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.66);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: #ffffff;
    max-width: 780px;
}

.hero-content h1 {
    font-size: clamp(42px, 6vw, 72px);
    font-weight: 900;
    line-height: 1.05;
    margin-bottom: 20px;
    letter-spacing: -1.5px;
}

.hero-content p {
    font-size: clamp(18px, 2vw, 22px);
    line-height: 1.55;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 36px;
}

.hero-buttons {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
}

/* ==================================================
   BOTONES
================================================== */

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 150px;
    padding: 16px 24px;
    border-radius: 12px;
    border: none;
    cursor: pointer;
    font-size: 16px;
    font-weight: 800;
    transition: 0.3s ease;
}

.btn-primary {
    background: var(--color-orange);
    color: #ffffff;
    box-shadow: 0 8px 20px rgba(255, 122, 24, 0.25);
}

.btn-primary:hover {
    background: var(--color-orange-dark);
    transform: translateY(-2px);
}

.btn-light {
    background: #ffffff;
    color: #222222;
}

.btn-light:hover {
    background: #f1f1f1;
    transform: translateY(-2px);
}

.btn-dark {
    background: #181818;
    color: #ffffff;
}

.btn-dark:hover {
    background: var(--color-orange);
    transform: translateY(-2px);
}

/* ==================================================
   TÍTULOS DE SECCIÓN
================================================== */

.section-heading {
    max-width: 820px;
    margin: 0 auto 60px;
    text-align: center;
}

.section-heading span,
.mini-title,
.section-label {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: var(--color-orange);
    font-size: 13px;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 5px;
    margin-bottom: 18px;
}

.section-heading span::before,
.mini-title::before,
.section-label::before {
    content: "";
    width: 28px;
    height: 2px;
    background: var(--color-orange);
    display: inline-block;
}

.section-heading h2 {
    color: #181818;
    font-size: clamp(34px, 5vw, 58px);
    font-weight: 900;
    line-height: 1.05;
    letter-spacing: -1.5px;
    margin-bottom: 22px;
}

.section-heading p {
    max-width: 680px;
    margin: 0 auto;
    color: #5c6575;
    font-size: 18px;
    line-height: 1.55;
}

/* ==================================================
   NUESTRA ESPECIALIDAD
================================================== */

.specialty-section {
    background: #ffffff;
    padding: 95px 0 100px;
}

.specialty-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.specialty-card {
    background: #ffffff;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: 0.3s ease;
}

.specialty-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 24px 55px rgba(15, 23, 42, 0.13);
}

.specialty-card img {
    width: 100%;
    height: 230px;
    object-fit: cover;
}

.specialty-content {
    padding: 26px 26px 32px;
}

.specialty-content h3 {
    font-size: 24px;
    color: #181818;
    margin-bottom: 18px;
    font-weight: 900;
}

.specialty-content p {
    color: #526070;
    font-size: 15px;
    line-height: 1.75;
}

/* ==================================================
   QUIÉNES SOMOS INDEX
================================================== */

.about-preview-section {
    background: #f6f7f9;
    padding: 95px 0;
}

.about-preview-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 70px;
    align-items: center;
}

.about-preview-content h2 {
    max-width: 620px;
    color: #181818;
    font-size: clamp(34px, 4.5vw, 56px);
    font-weight: 900;
    line-height: 1.05;
    letter-spacing: -1.5px;
    margin-bottom: 26px;
}

.about-preview-content p {
    max-width: 620px;
    color: #526070;
    font-size: 18px;
    line-height: 1.8;
    margin-bottom: 34px;
}

.about-preview-box {
    background: #ffffff;
    border-radius: 24px;
    padding: 42px;
    box-shadow: 0 24px 55px rgba(15, 23, 42, 0.09);
}

.about-preview-box ul {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.about-preview-box li {
    display: flex;
    align-items: center;
    gap: 12px;
    color: #344054;
    font-size: 16px;
    line-height: 1.5;
}

.about-preview-box li i {
    color: var(--color-orange);
    font-size: 18px;
}

/* ==================================================
   UBICACIÓN
================================================== */

.location-section {
    background: #ffffff;
    padding: 95px 0 105px;
}

.location-heading {
    margin-bottom: 60px;
}

.location-heading h2 {
    font-size: clamp(36px, 4.8vw, 56px);
}

.location-grid {
    display: grid;
    grid-template-columns: 1.35fr 0.65fr;
    gap: 36px;
    align-items: stretch;
}

.map-box {
    width: 100%;
    min-height: 420px;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: var(--shadow);
    border: 1px solid #eef0f3;
}

.map-box iframe {
    width: 100%;
    height: 100%;
    min-height: 420px;
    border: 0;
    display: block;
}

.location-info-card {
    background: #ffffff;
    border-radius: 24px;
    padding: 38px;
    box-shadow: var(--shadow);
    border: 1px solid #eef0f3;
}

.location-info-card>span {
    display: inline-block;
    color: #62b943;
    font-size: 13px;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 16px;
}

.location-info-card h3 {
    color: #181818;
    font-size: 32px;
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 28px;
}

.location-info-card ul {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-bottom: 30px;
}

.location-info-card li {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    color: #344054;
}

.location-info-card li i {
    width: 20px;
    min-width: 20px;
    color: var(--color-orange);
    font-size: 17px;
    margin-top: 3px;
}

.location-info-card li p {
    color: #344054;
    font-size: 16px;
    line-height: 1.6;
}

.location-buttons {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.location-buttons .btn {
    width: 100%;
    max-width: 100%;
}

/* ==================================================
   CTA COMPACTO
================================================== */

.cta-section {
    background: var(--color-orange);
    padding: 34px 0;
    text-align: center;
}

.cta-content h2 {
    color: #181818;
    font-size: clamp(28px, 3.5vw, 44px);
    font-weight: 900;
    line-height: 1.05;
    letter-spacing: -1.2px;
    margin-bottom: 10px;
}

.cta-content p {
    max-width: 620px;
    margin: 0 auto 20px;
    color: #181818;
    font-size: 17px;
    line-height: 1.35;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
}

.cta-buttons .btn {
    padding: 12px 20px;
    min-width: 140px;
    font-size: 14px;
    border-radius: 10px;
}

/* ==================================================
   FOOTER COMPACTO
================================================== */

.footer {
    background: #2b2c31;
    color: #ffffff;
    padding: 30px 0 18px;
}

.footer-container {
    max-width: 1080px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.8fr 0.9fr 1fr;
    gap: 40px;
    padding-bottom: 22px;
}

.footer-brand img {
    width: 110px;
    background: #ffffff;
    border-radius: 6px;
    padding: 4px;
    margin-bottom: 12px;
}

.footer-brand h3,
.footer-column h4 {
    color: #ffffff;
    font-size: 20px;
    font-weight: 900;
    margin-bottom: 17px;
    position: relative;
}

.footer-brand h3::after,
.footer-column h4::after {
    content: "";
    width: 38px;
    height: 3px;
    background: var(--color-orange);
    border-radius: 20px;
    position: absolute;
    left: 0;
    bottom: -8px;
}

.footer-brand p {
    color: #d5d7dc;
    font-size: 13px;
    line-height: 1.55;
    margin-bottom: 14px;
}

.footer-social {
    display: flex;
    align-items: center;
    gap: 8px;
}

.footer-social a {
    width: 30px;
    height: 30px;
    border: 1px solid rgba(255, 255, 255, 0.22);
    border-radius: 50%;
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 0.3s ease;
    font-size: 13px;
}

.footer-social a:hover {
    background: var(--color-orange);
    border-color: var(--color-orange);
    transform: translateY(-3px);
}

.footer-column ul {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.footer-column a,
.footer-column li,
.footer-column span {
    color: #d5d7dc;
    font-size: 13px;
    line-height: 1.45;
    transition: 0.3s ease;
}

.footer-column a:hover {
    color: var(--color-orange);
    padding-left: 4px;
}

.footer-contact li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.footer-contact i {
    color: var(--color-orange);
    width: 15px;
    min-width: 15px;
    font-size: 13px;
    margin-top: 2px;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.12);
    padding-top: 12px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.footer-bottom p {
    color: #aeb3bd;
    font-size: 12px;
}

/* ==================================================
   PÁGINA NOSOTROS
================================================== */

.nosotros-hero {
    position: relative;
    min-height: 430px;
    padding-top: 86px;
    background-image: url("../img/nosotros-bg.jpg");
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.nosotros-hero-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.58);
    z-index: 1;
}

.nosotros-hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: #ffffff;
}

.nosotros-hero-content h1 {
    font-size: clamp(42px, 5vw, 68px);
    font-weight: 900;
    line-height: 1.05;
    margin-bottom: 18px;
    letter-spacing: -1.5px;
    color: #ffffff;
}

.nosotros-hero-content p {
    color: rgba(255, 255, 255, 0.92);
    font-size: 20px;
    line-height: 1.6;
}

.nosotros-about-section {
    background: #ffffff;
    padding: 92px 0 96px;
}

.nosotros-about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 76px;
    align-items: center;
}

.nosotros-about-content h2 {
    color: #181818;
    font-size: clamp(38px, 4.6vw, 58px);
    font-weight: 900;
    line-height: 1.02;
    letter-spacing: -1.5px;
    margin-bottom: 26px;
    max-width: 520px;
}

.nosotros-about-content p {
    max-width: 620px;
    color: #526070;
    font-size: 17px;
    line-height: 1.75;
}

.nosotros-about-box {
    background: #ffffff;
    border-radius: 24px;
    padding: 42px;
    box-shadow: var(--shadow);
    border: 1px solid #eef0f3;
}

.nosotros-about-box ul {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.nosotros-about-box li {
    display: flex;
    align-items: center;
    gap: 12px;
    color: #344054;
    font-size: 16px;
    line-height: 1.5;
}

.nosotros-about-box li i {
    color: var(--color-orange);
    font-size: 18px;
}

.nosotros-philosophy-section {
    background: #f6f7f9;
    padding: 90px 0 100px;
}

.philosophy-heading {
    margin-bottom: 55px;
    text-align: center;
}

.philosophy-heading h2 {
    font-size: clamp(38px, 5vw, 62px);
    font-weight: 900;
    line-height: 1.05;
    letter-spacing: -1.5px;
    color: #181818;
}

.philosophy-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 26px;
    max-width: 990px;
    margin: 0 auto;
}

.philosophy-card {
    background: #ffffff;
    padding: 28px 28px 26px;
    border-radius: 18px;
    box-shadow: 0 14px 35px rgba(15, 23, 42, 0.06);
    border: 1px solid #edf0f2;
}

.philosophy-card h3 {
    color: #222222;
    font-size: 20px;
    font-weight: 800;
    margin-bottom: 18px;
}

.philosophy-text-card p {
    color: #556070;
    font-size: 15px;
    line-height: 1.65;
}

.philosophy-values-card ul {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.philosophy-values-card li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    color: #556070;
    font-size: 15px;
    line-height: 1.45;
}

.philosophy-values-card li i {
    color: var(--color-orange);
    font-size: 16px;
    margin-top: 2px;
}

/* ==================================================
   LOGIN
================================================== */

.login-section {
    min-height: 100vh;
    padding-top: 120px;
    background: linear-gradient(135deg, #111111, #2b2b2b);
    display: flex;
    align-items: center;
    justify-content: center;
}

.login-box {
    width: min(420px, 92%);
    background: #ffffff;
    padding: 38px;
    border-radius: 24px;
    box-shadow: 0 30px 70px rgba(0, 0, 0, 0.28);
    text-align: center;
}

.login-box img {
    width: 210px;
    margin: 0 auto 22px;
}

.login-box h1 {
    font-size: 32px;
    margin-bottom: 8px;
}

.login-box p {
    color: var(--color-gray);
    margin-bottom: 26px;
}

.login-box .btn {
    width: 100%;
}

.alert-success,
.alert-error {
    padding: 14px 18px;
    border-radius: 12px;
    margin-bottom: 20px;
    font-weight: 700;
}

.alert-success {
    background: #e8f8ef;
    color: #16884a;
}

.alert-error {
    background: #fdecec;
    color: #c0392b;
}

/* ==================================================
   PÁGINAS DINÁMICAS DE PRODUCTOS
================================================== */

.product-page-hero {
    position: relative;
    min-height: 330px;
    padding-top: 86px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background: #111111;
}

.product-page-hero-img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
}

.product-page-hero-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.62);
    z-index: 1;
}

.product-page-hero-content {
    position: relative;
    z-index: 2;
    max-width: 820px;
    text-align: center;
    color: #ffffff;
    padding: 0 20px;
}

.product-page-hero-content span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--color-orange);
    font-size: 12px;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 4px;
    margin-bottom: 12px;
}

.product-page-hero-content h1 {
    font-size: clamp(38px, 5vw, 58px);
    font-weight: 900;
    line-height: 1.05;
    letter-spacing: -1.4px;
    margin-bottom: 14px;
}

.product-page-hero-content p {
    max-width: 720px;
    margin: 0 auto;
    color: rgba(255, 255, 255, 0.9);
    font-size: 17px;
    line-height: 1.6;
}

.catalog-section {
    background: #f7f8fa;
    padding: 70px 0 80px;
}

.catalog-section .section-heading {
    margin-bottom: 45px;
}

.catalog-section .section-heading h2 {
    font-size: clamp(36px, 5vw, 56px);
}

.catalog-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 28px;
    align-items: stretch;
}

.catalog-card {
    background: #ffffff;
    border-radius: 22px;
    overflow: hidden;
    box-shadow: var(--shadow);
    border: 1px solid #edf0f3;
    transition: 0.3s ease;
    display: flex;
    flex-direction: column;
}

.catalog-card:hover {
    transform: translateY(-7px);
    box-shadow: 0 24px 55px rgba(15, 23, 42, 0.13);
}

.catalog-image-box {
    width: 100%;
    height: 220px;
    background: #eeeeee;
    overflow: hidden;
}

.catalog-image-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.catalog-card-content {
    padding: 22px;
    text-align: left;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.catalog-card-content span {
    color: var(--color-orange);
    font-size: 12px;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 1.6px;
    margin-bottom: 10px;
}

.catalog-card-content h3 {
    color: #181818;
    font-size: 21px;
    font-weight: 900;
    line-height: 1.2;
    margin-bottom: 20px;
}

.quote-btn {
    margin-top: auto;
    width: 100%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background: #25d366;
    color: #ffffff;
    padding: 14px 18px;
    border-radius: 14px;
    font-size: 15px;
    font-weight: 900;
    transition: 0.3s ease;
}

.quote-btn:hover {
    background: #1fb85a;
    transform: translateY(-2px);
}

.empty-catalog {
    max-width: 620px;
    margin: 0 auto;
    background: #ffffff;
    border: 1px solid #eef0f3;
    border-radius: 24px;
    padding: 45px 32px;
    text-align: center;
    box-shadow: 0 18px 45px rgba(15, 23, 42, 0.06);
}

.empty-catalog i {
    width: 70px;
    height: 70px;
    border-radius: 20px;
    background: rgba(255, 122, 24, 0.1);
    color: var(--color-orange);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    margin-bottom: 22px;
}

.empty-catalog h3 {
    color: #181818;
    font-size: 28px;
    font-weight: 900;
    margin-bottom: 12px;
}

.empty-catalog p {
    color: #5c6575;
    font-size: 16px;
    line-height: 1.7;
}

/* ==================================================
   WHATSAPP FLOTANTE
================================================== */

.whatsapp-btn {
    position: fixed;
    right: 28px;
    bottom: 28px;
    width: 58px;
    height: 58px;
    border-radius: 50%;
    background: #25d366;
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 999;
    box-shadow: 0 10px 28px rgba(37, 211, 102, 0.35);
    transition: 0.3s ease;
    text-decoration: none;
}

.whatsapp-btn i {
    font-size: 31px;
    line-height: 1;
}

.whatsapp-btn:hover {
    transform: scale(1.08);
    background: #1ebe5d;
}

/* ==================================================
   RESPONSIVE
================================================== */

@media (max-width: 1200px) {
    .catalog-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 1100px) {
    .specialty-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .specialty-card img {
        height: 260px;
    }
}

@media (max-width: 980px) {
    .header {
        height: 78px;
    }

    .logo img {
        width: 170px;
    }

    .menu-toggle {
        display: block;
        order: 3;
    }

    .login-btn {
        display: none;
    }

    .nav {
        position: fixed;
        top: 78px;
        left: 0;
        width: 100%;
        background: #ffffff;
        display: none;
        box-shadow: 0 12px 24px rgba(0, 0, 0, 0.1);
    }

    .nav.active {
        display: block;
    }

    .nav-list {
        flex-direction: column;
        align-items: flex-start;
        gap: 0;
        padding: 18px 6%;
    }

    .nav-list li {
        width: 100%;
    }

    .nav-list a,
    .dropdown-btn {
        width: 100%;
        padding: 15px 0;
        font-size: 16px;
        justify-content: space-between;
    }

    .dropdown-menu {
        position: static;
        width: 100%;
        box-shadow: none;
        border-radius: 0;
        padding: 0 0 0 16px;
        opacity: 1;
        visibility: visible;
        transform: none;
        display: none;
    }

    .dropdown.active .dropdown-menu {
        display: block;
    }

    .hero {
        min-height: 560px;
        padding-top: 78px;
    }

    .hero-buttons,
    .cta-buttons {
        flex-direction: column;
    }

    .btn {
        width: 100%;
        max-width: 260px;
    }

    .about-preview-grid,
    .location-grid,
    .nosotros-about-grid,
    .contact-grid {
        grid-template-columns: 1fr;
    }

    .philosophy-grid {
        grid-template-columns: 1fr;
    }

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

    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 32px;
    }

    .footer-bottom {
        flex-direction: column;
        align-items: flex-start;
    }
}

@media (max-width: 650px) {
    .container {
        width: 90%;
    }

    .hero {
        min-height: 520px;
    }

    .hero-content h1 {
        font-size: 40px;
    }

    .hero-content p {
        font-size: 17px;
    }

    .section-heading {
        margin-bottom: 40px;
    }

    .section-heading span,
    .mini-title,
    .section-label {
        font-size: 11px;
        letter-spacing: 3px;
    }

    .section-heading h2,
    .about-preview-content h2 {
        font-size: 34px;
    }

    .section-heading p,
    .about-preview-content p {
        font-size: 16px;
    }

    .specialty-section,
    .about-preview-section,
    .location-section,
    .nosotros-about-section,
    .nosotros-philosophy-section,
    .catalog-section {
        padding: 60px 0;
    }

    .specialty-grid,
    .catalog-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .specialty-card img,
    .catalog-image-box {
        height: 230px;
    }

    .nosotros-hero,
    .product-page-hero {
        min-height: 310px;
        padding-top: 78px;
    }

    .nosotros-hero-content h1,
    .product-page-hero-content h1 {
        font-size: 38px;
    }

    .nosotros-hero-content p,
    .product-page-hero-content p {
        font-size: 16px;
    }

    .cta-section {
        padding: 30px 0;
    }

    .cta-content h2 {
        font-size: 28px;
    }

    .cta-content p {
        font-size: 16px;
        margin-bottom: 18px;
    }

    .footer {
        padding: 30px 0 18px;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 24px;
        padding-bottom: 24px;
    }

    .footer-brand img {
        width: 105px;
    }

    .whatsapp-btn {
        width: 52px;
        height: 52px;
        right: 18px;
        bottom: 18px;
    }

    .whatsapp-btn i {
        font-size: 28px;
    }
}



/* ==================================================
   PÁGINA CONTACTO PROFESIONAL
================================================== */

.contact-page-section {
    background: #ffffff;
    padding: 165px 0 80px;
}

.contact-page-heading {
    margin-bottom: 55px;
}

.contact-page-grid {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 42px;
    align-items: stretch;
}

/* CAJA NEGRA DE INFORMACIÓN */

.contact-page-info {
    background: #151515;
    color: #ffffff;
    border-radius: 26px;
    padding: 44px;
    box-shadow: 0 24px 55px rgba(15, 23, 42, 0.14);
}

.contact-page-info h2 {
    font-size: 34px;
    font-weight: 900;
    line-height: 1.15;
    margin-bottom: 18px;
}

.contact-page-info p {
    color: rgba(255, 255, 255, 0.82);
    font-size: 16px;
    line-height: 1.75;
    margin-bottom: 34px;
}

.contact-page-item {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    margin-bottom: 18px;
}

.contact-page-item i {
    color: var(--color-orange);
    font-size: 19px;
    width: 22px;
    min-width: 22px;
    margin-top: 2px;
}

.contact-page-item span {
    color: #ffffff;
    font-size: 16px;
    line-height: 1.5;
}

/* FORMULARIO */

.contact-page-form {
    background: #ffffff;
    border-radius: 26px;
    padding: 40px;
    box-shadow: 0 24px 55px rgba(15, 23, 42, 0.10);
    border: 1px solid #eef0f3;
}

.contact-page-form .form-group {
    margin-bottom: 18px;
}

.contact-page-form input,
.contact-page-form select,
.contact-page-form textarea {
    width: 100%;
    display: block;
    border: 1px solid #dde3eb;
    background: #f8fafc;
    border-radius: 14px;
    padding: 16px 17px;
    font-size: 15px;
    color: #181818;
    outline: none;
    font-family: Arial, Helvetica, sans-serif;
    transition: 0.3s ease;
}

.contact-page-form textarea {
    min-height: 150px;
    resize: vertical;
}

.contact-page-form input:focus,
.contact-page-form select:focus,
.contact-page-form textarea:focus {
    border-color: var(--color-orange);
    background: #ffffff;
    box-shadow: 0 0 0 4px rgba(255, 122, 24, 0.10);
}

.contact-page-form .btn {
    width: auto;
    min-width: 180px;
    margin-top: 4px;
}

/* TABLET */

@media (max-width: 980px) {
    .contact-page-section {
        padding: 130px 0 65px;
    }

    .contact-page-grid {
        grid-template-columns: 1fr;
        gap: 28px;
    }
}

/* CELULAR */

@media (max-width: 650px) {
    .contact-page-section {
        padding: 115px 0 55px;
    }

    .contact-page-heading {
        margin-bottom: 36px;
    }

    .contact-page-info,
    .contact-page-form {
        padding: 28px;
        border-radius: 20px;
    }

    .contact-page-info h2 {
        font-size: 28px;
    }

    .contact-page-form .btn {
        width: 100%;
    }
}

/* ==================================================
   MODAL PARA AGRANDAR IMAGEN DE PRODUCTO
================================================== */

.product-zoom-img {
    cursor: zoom-in;
}

.image-modal {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.82);
    z-index: 3000;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 28px;
}

.image-modal.active {
    display: flex;
}

.image-modal-content {
    max-width: 950px;
    width: 100%;
    text-align: center;
    animation: zoomFade 0.25s ease;
}

.image-modal-content img {
    width: 100%;
    max-height: 78vh;
    object-fit: contain;
    border-radius: 18px;
    background: #ffffff;
    box-shadow: 0 24px 70px rgba(0, 0, 0, 0.35);
}

.image-modal-content h3 {
    color: #ffffff;
    font-size: 24px;
    margin-top: 18px;
    font-weight: 900;
}

.image-modal-close {
    position: absolute;
    top: 24px;
    right: 28px;
    width: 48px;
    height: 48px;
    border: none;
    border-radius: 50%;
    background: #ffffff;
    color: #181818;
    font-size: 24px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
}

.image-modal-close:hover {
    background: var(--color-orange);
    color: #ffffff;
}

@keyframes zoomFade {
    from {
        opacity: 0;
        transform: scale(0.92);
    }

    to {
        opacity: 1;
        transform: scale(1);
    }
}

@media (max-width: 650px) {
    .image-modal {
        padding: 18px;
    }

    .image-modal-close {
        top: 16px;
        right: 16px;
        width: 42px;
        height: 42px;
        font-size: 21px;
    }

    .image-modal-content img {
        max-height: 72vh;
        border-radius: 14px;
    }

    .image-modal-content h3 {
        font-size: 20px;
    }
}