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

:root {
    --orange: #FF5722;
    --orange-hover: #F4511E;
    --green: #25D366;
    --green-hover: #20BA5A;
    --black: #000;
    --white: #fff;
    --gray-light: #E0E0E0;
    --gray-medium: #9E9E9E;
    --gray-dark: #424242;
    --footer-gray: #BDBDBD;
}

body {
    font-family: 'Space Grotesk', sans-serif;
    line-height: 1.6;
    color: var(--black);
    font-weight: 300;
}

/* Forzar font-weight 300 en todos los elementos de texto */
h1, h2, h3, h4, h5, h6, p, a, span, li, div, button, input, textarea, select {
    font-weight: 300;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.dibujotecnologia {
    max-width: 200px;
}

#disenoespecial {
    max-width: 1200px;
    margin: 0 auto;
    margin-bottom: -7px;
    padding: 0px;
}

#disenoespecial img {
    width:100%;
    margin:0px;
    margin-bottom: 0px;
}

.menu-item-cart {
    display: none !important;
}

/* Header */
.header {
    background: var(--white);
    border-bottom: 1px solid var(--gray-light);
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

.header .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 20px;
    gap: 24px;
}

.logo {
    display: flex;
    align-items: center;
    text-decoration: none;
    flex-shrink: 0;
}

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

.mobile-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
}

.mobile-toggle span {
    display: block;
    width: 25px;
    height: 3px;
    background: var(--black);
    border-radius: 2px;
    transition: 0.3s;
}

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

nav a {
    text-decoration: none;
    color: var(--black);
    font-size: 15px;
    font-weight: 300;
    white-space: nowrap;
    transition: color 0.2s;
}

nav a:hover {
    color: var(--orange);
}

.whatsapp-btn {
    background: var(--green);
    color: var(--white) !important;
    padding: 10px 20px;
    border-radius: 6px;
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 300;
    transition: all 0.3s;
}

.whatsapp-btn:hover {
    background: var(--green-hover);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(37,211,102,0.3);
}

/* Hero */
.hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-auto-rows: 1fr;
    max-width: 1200px;
    margin: 0 auto;
}

.hero-left {
    background: var(--black);
    color: var(--white);
    padding: 64px 48px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    gap: 24px;
    min-height: 500px;
}

.hero-left h1 {
    font-size: 32px;
    font-weight: 300;
    line-height: 1.3;
    color: var(--orange);
}

.hero-description {
    font-size: 16px;
    line-height: 1.6;
    color: var(--black);
    margin: 0;
    background: var(--gray-medium);
    padding: 24px 32px;
    margin-left: -48px;
    margin-right: -48px;
    margin-bottom: -64px;
}

.hero-right {
    background-size: cover;
    background-position: center;
    padding: 64px 48px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    gap: 24px;
    position: relative;
    min-height: 500px;
}

.hero-right::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to right, rgba(0,0,0,0.5), rgba(0,0,0,0.2));
}

.hero-right h2 {
    position: relative;
    z-index: 1;
    font-size: 28px;
    font-weight: 300;
    line-height: 1.3;
    color: var(--white);
}

.hero-label {
    position: relative;
    z-index: 1;
    font-size: 16px;
    line-height: 1.6;
    color: var(--black);
    margin: 0;
    background: var(--gray-light);
    padding: 24px 32px;
    margin-left: -48px;
    margin-right: -48px;
    margin-bottom: -64px;
}


/* Brands */
.brands {
    margin: 64px auto;
}

.brands-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: center;
}

.brands-text {
    padding-right: 32px;
}

.brands-text p {
    font-size: 16px;
    line-height: 1.7;
    color: var(--black);
}

.brands-logos {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 8px;
    align-items: center;
}

.brands-logos div {
    display: flex;
    justify-content: center;
    align-items: center;
    transition: transform 0.3s;
}

.brands-logos div:hover {
    transform: scale(1.05);
}

.brands-logos img {
    max-width: 100%;
    height: auto;
    min-height: 80px;
    max-height: 140px;
    object-fit: contain;
    filter: grayscale(100%);
    opacity: 0.7;
    transition: all 0.3s;
}

.brands-logos div:hover img {
    filter: grayscale(0%);
    opacity: 1;
}

/* Projects */
.projects {
    max-width: 1200px;
    margin: 64px auto 0;
}

.projects-header {
    background: var(--gray-medium);
    color: var(--white);
    padding: 12px 48px;
    font-size: 16px;
    font-weight: 300;
}

.project-card-title {
    background: var(--black);
    color: var(--white);
    padding: 16px 48px;
    font-size: 16px;
    font-weight: 300;
}

.project-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
}

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

.project-info {
    padding: 48px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 24px;
}

.project-info p {
    font-size: 15px;
    line-height: 1.7;
}

.btn {
    display: inline-block;
    padding: 12px 32px;
    border: 2px solid var(--black);
    background: transparent;
    color: var(--black);
    text-decoration: none;
    font-size: 14px;
    font-weight: 300;
    border-radius: 6px;
    transition: all 0.3s;
    align-self: flex-start;
}

.btn:hover {
    background: var(--black);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.2);
}

/* Footer */
.footer {
    margin-top: 0px;
}

.footer-top {
    background: var(--orange);
    color: var(--white);
    padding: 24px 0;
    margin: 0 auto;
    max-width: 1200px;
}

.footer-top .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 32px;
}

.footer-top nav {
    gap: 32px;
}

.footer-top a {
    color: var(--white);
    font-size: 14px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.footer-top a .arrow-icon {
    width: 12px;
    height: 12px;
    flex-shrink: 0;
    display: inline-block;
}

.footer-top a:hover {
    opacity: 0.8;
    color: var(--white);
}

.footer-top p {
    font-size: 14px;
}

.footer-bottom {
    background: var(--footer-gray);
    padding: 24px 0;
    margin: 0 auto;
    max-width: 1200px;
}

.footer-bottom .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 32px;
}

.footer-bottom p {
    font-size: 14px;
}

.social {
    display: flex;
    gap: 12px;
}

.social a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: var(--gray-dark);
    color: var(--white);
    transition: all 0.3s;
}

.social a:hover {
    background: var(--orange);
    transform: translateY(-2px);
}

/* Responsive */
@media (max-width: 1023px) {
    nav {
        gap: 24px;
    }
    nav a {
        font-size: 14px;
    }
    .hero-grid, .project-content {
        grid-template-columns: 1fr;
    }
    .hero-left, .hero-right {
        padding: 48px 32px;
    }
    .hero-description, .hero-label {
        margin-left: -32px;
        margin-right: -32px;
        margin-bottom: -48px;
        padding: 20px 24px;
    }
    .brands-content {
        grid-template-columns: 1fr;
        gap: 48px;
    }
    .brands-text {
        padding-right: 0;
    }
}

@media (max-width: 767px) {
    .mobile-toggle {
        display: flex;
    }
    
    nav {
        position: fixed;
        top: 60px;
        left: 0;
        right: 0;
        background: var(--white);
        flex-direction: column;
        padding: 24px;
        box-shadow: 0 4px 12px rgba(0,0,0,0.1);
        transform: translateY(-100%);
        opacity: 0;
        pointer-events: none;
        transition: all 0.3s;
    }
    
    nav.active {
        transform: translateY(0);
        opacity: 1;
        pointer-events: all;
    }
    
    nav a {
        width: 100%;
        padding: 12px;
    }
    
    .whatsapp-btn {
        width: 100%;
        justify-content: center;
    }
    
    .hero-left, .hero-right {
        padding: 32px 24px;
    }
    
    .hero-left h1 {
        font-size: 24px;
    }
    
    .hero-right h2 {
        font-size: 22px;
    }
    
    .brands-logos {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    
    .footer-top .container,
    .footer-bottom .container {
        flex-direction: column;
        gap: 16px;
        text-align: center;
    }
    
    .footer-top nav {
        flex-direction: column;
        gap: 12px;
    }
}

/* ============================================
   SOBRE NOSOTROS PAGE
   ============================================ */

/* Breadcrumb */
.breadcrumb {
    background: var(--gray-medium);
    padding: 12px 0;
    margin: 0 auto;
    max-width: 1200px;
}

.breadcrumb .container {
    padding: 0 32px;
}

.breadcrumb span {
    color: var(--white);
    font-size: 15px;
    font-weight: 300;
}

/* Empresa Section */
.empresa-section {
    margin: 64px auto;
}

.section-title {
    font-size: 18px;
    font-weight: 300;
    color: var(--black);
    margin-bottom: 32px;
    padding-bottom: 12px;
    border-bottom: 1px solid var(--gray-light);
}

.main-headline {
    font-size: 32px;
    font-weight: 300;
    line-height: 1.4;
    color: var(--black);
    margin-bottom: 48px;
}

.empresa-content {
    display: grid;
    grid-template-columns: 45% 55%;
    gap: 48px;
}

.empresa-text {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.empresa-text p {
    font-size: 15px;
    line-height: 1.7;
    color: var(--black);
}

.empresa-image {
    background: var(--gray-light);
    min-height: 400px;
    border-radius: 4px;
    overflow: hidden;
}

.empresa-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* Porque Section */
.porque-section {
    margin: 64px auto;
}

/* ============================================
   TABS COMPONENT (Reutilizable)
   ============================================ */
.tabs-component {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
}

.tabs-nav {
    background: var(--black);
    padding: 48px;
    display: flex;
    flex-direction: column;
    gap: 0;
}

.tab-item {
    background: transparent;
    border: none;
    color: var(--white);
    font-family: var(--font-family);
    font-size: 18px;
    font-weight: 300;
    line-height: 1.4;
    text-align: left;
    padding: 20px 0;
    cursor: pointer;
    transition: all 0.3s;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
}

.tab-item:last-child {
    border-bottom: none;
}

.tab-item:hover {
    color: var(--orange);
    padding-left: 8px;
}

.tab-item.active {
    color: var(--orange);
    font-weight: 300;
}

.tab-item.active::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 80px;
    height: 3px;
    background-color: var(--orange);
}

.tabs-content {
    background: var(--white);
    border: 1px solid var(--gray-light);
    padding: 48px;
    position: relative;
    min-height: 400px;
}

.tab-panel {
    display: none;
    flex-direction: column;
    gap: 20px;
    animation: fadeIn 0.4s ease-in-out;
}

.tab-panel.active {
    display: flex;
}

.tab-panel h3 {
    font-size: 20px;
    font-weight: 300;
    color: var(--black);
    padding-bottom: 12px;
    position: relative;
    margin-bottom: 8px;
}

.tab-panel h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 80px;
    height: 3px;
    background-color: var(--orange);
}

.tab-panel p {
    font-size: 15px;
    line-height: 1.7;
    color: var(--black);
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.link-conocenos {
    color: var(--orange);
    font-size: 14px;
    font-weight: 300;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: auto;
    transition: opacity 0.3s;
}

.link-conocenos:hover {
    opacity: 0.8;
}

.link-conocenos .arrow-icon {
    width: 12px;
    height: 12px;
}

/* Tagline Section */
.tagline-section {
    margin: 64px auto;
    padding: 32px 0;
    border-top: 1px solid var(--gray-light);
    border-bottom: 1px solid var(--gray-light);
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 32px;
}

.tagline-section p {
    font-size: 18px;
    font-weight: 300;
    color: var(--black);
    text-align: left;
    margin: 0;
}

/* Responsive - Sobre Nosotros */
@media (max-width: 1023px) {
    .main-headline {
        font-size: 28px;
    }
    
    .empresa-content {
        grid-template-columns: 1fr;
        gap: 48px;
    }
    
    .empresa-image {
        min-height: 300px;
    }
    
    .tabs-component {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 767px) {
    .main-headline {
        font-size: 24px;
    }
    
    .tabs-nav {
        padding: 32px 24px;
    }
    
    .tab-item {
        font-size: 16px;
        padding: 16px 0;
    }
    
    .tabs-content {
        padding: 32px 24px;
        min-height: 300px;
    }
    
    .tab-panel h3 {
        font-size: 18px;
    }
    
    .tagline-section {
        flex-direction: column;
        align-items: flex-start;
        gap: 20px;
    }
}

/* ============================================
   SERVICIOS PAGE
   ============================================ */

/* BMS Section */
.bms-section {
    margin: 64px auto;
}

.bms-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: center;
}

.bms-diagram {
    position: relative;
}

.bms-diagram img {
    width: 100%;
    height: auto;
    border-radius: 4px;
}

.bms-text {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.badge-bms {
    display: inline-block;
    background: var(--black);
    color: var(--white);
    padding: 6px 16px;
    border-radius: 4px;
    font-size: 14px;
    font-weight: 300;
    align-self: flex-start;
    margin-bottom: 8px;
}

.bms-text p {
    font-size: 15px;
    line-height: 1.7;
    color: var(--black);
}

/* Servicios Tabs Section */
.servicios-tabs-section {
    margin: 64px auto;
}

/* Aplicaciones Section */
.aplicaciones-section {
    margin: 64px auto;
}

.aplicaciones-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

.aplicacion-card {
    background: var(--white);
    border-radius: 4px;
    overflow: hidden;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
}

.aplicacion-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}

.aplicacion-card img {
    width: 100%;
    height: auto;
    display: block;
}

/* Responsive - Servicios */
@media (max-width: 1023px) {
    .bms-content {
        grid-template-columns: 1fr;
        gap: 48px;
    }
    
    .aplicaciones-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 767px) {
    .aplicaciones-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }
}

/* ============================================
   MARCAS ALIADAS PAGE
   ============================================ */

/* Page Header */
.page-header {
    margin: 48px auto 64px;
}

.page-header h1 {
    font-size: 28px;
    font-weight: 300;
    color: var(--black);
    padding-bottom: 16px;
    border-bottom: 1px solid var(--gray-light);
}

/* Brands Detail Section */
.brands-detail-section {
    margin: 0 auto 64px;
}

.brand-detail {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    margin-bottom: 64px;
    padding-bottom: 0px;
}

.brand-detail:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.brand-logo-box {
    background: var(--white);
    padding: 48px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 32px;
    border: 1px solid var(--gray-light);
}

.brand-logo-box img {
    max-width: 100%;
    height: auto;
    max-height: 100px;
}

.brand-links {
    display: flex;
    flex-direction: row;
    gap: 32px;
    width: 100%;
    justify-content: center;
    flex-wrap: wrap;
}

.brand-description {
    display: flex;
    flex-direction: column;
    gap: 20px;
    justify-content: center;
    background: var(--gray-light);
    padding: 48px;
}

.brand-description p {
    font-size: 15px;
    line-height: 1.7;
    color: var(--black);
}

.brand-description strong {
    font-weight: 300;
}

/* Responsive - Marcas Aliadas */
@media (max-width: 1023px) {
    .brand-detail {
        grid-template-columns: 1fr;
        gap: 0;
        margin-bottom: 48px;
        padding-bottom: 48px;
    }
    
    .brand-logo-box {
        padding: 32px;
    }
    
    .brand-description {
        padding: 32px;
    }
}

@media (max-width: 767px) {
    .page-header h1 {
        font-size: 24px;
    }
    
    .brand-logo-box {
        padding: 24px;
    }
    
    .brand-description {
        padding: 24px;
    }
}

/* ============================================
   PROYECTOS PAGE
   ============================================ */

/* Breadcrumb para Proyectos */
.page-template-page-proyectos .breadcrumb {
    background: var(--gray-medium);
    padding: 12px 0;
}

.page-template-page-proyectos .breadcrumb span {
    color: var(--white);
    font-size: 15px;
}

/* Project Header */
.project-header {
    margin: 48px auto 64px;
}

.project-title-wrapper {
    padding-bottom: 10px;
    border-bottom: 1px solid #D0D0D0;
    margin-bottom: 40px;
}

.page-template-page-proyectos .project-title {
    font-size: 24px;
    font-weight: 300;
    color: var(--black);
    margin: 0;
    letter-spacing: 0.02em;
    background: transparent;
    padding: 0;
}

.project-description-wrapper {
    max-width: 100%;
}

.project-description {
    font-size: 32px;
    line-height: 1.4;
    color: var(--black);
    font-weight: 300;
    margin: 0;
    letter-spacing: -0.01em;
}

/* Project Hero */
.project-hero {
    margin: 32px auto 64px;
}

.project-hero img {
    width: 100%;
    height: auto;
    border-radius: 4px;
    max-height: 500px;
    object-fit: cover;
}

/* Project Content Section */
.project-content-section {
    margin: 64px auto;
}

.project-content-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: center;
}

.project-text p {
    font-size: 15px;
    line-height: 1.7;
    color: var(--black);
    font-weight: 300;
}

.project-image img {
    width: 100%;
    height: auto;
    border-radius: 4px;
}

/* Project Details */
.project-details {
    margin: 64px auto;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.project-details p {
    font-size: 15px;
    line-height: 1.7;
    color: var(--black);
    font-weight: 300;
}

/* Project Gallery */
.project-gallery {
    margin: 64px auto;
}

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

.gallery-item img {
    width: 100%;
    height: auto;
    border-radius: 4px;
    object-fit: cover;
    aspect-ratio: 16/9;
}

/* Project Info Section */
.project-info-section {
    margin: 64px auto;
}

.project-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.project-list li {
    font-size: 15px;
    line-height: 1.6;
    color: var(--black);
    padding-left: 20px;
    position: relative;
    font-weight: 300;
}

.project-list li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--orange);
    font-weight: 300;
}

/* Project CTA */
.project-cta {
    margin: 64px auto;
    text-align: center;
    padding: 48px;
    background: var(--gray-light);
    border-radius: 4px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 24px;
}

.project-cta p {
    font-size: 20px;
    font-weight: 300;
    color: var(--black);
}

/* Responsive - Proyectos */
@media (max-width: 1023px) {
    .project-content-grid {
        grid-template-columns: 1fr;
        gap: 48px;
    }
    
    .gallery-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 767px) {
    .project-title {
        font-size: 20px;
    }
    
    .project-description {
        font-size: 24px;
        line-height: 1.3;
    }
    
    .project-title-wrapper {
        padding-bottom: 16px;
        margin-bottom: 24px;
    }
    
    .project-hero img {
        max-height: 300px;
    }
    
    .project-cta {
        padding: 32px 24px;
    }
    
    .project-cta p {
        font-size: 18px;
    }
}

/* ============================================
   PRODUCTOS PAGE
   ============================================ */

/* Breadcrumb Naranja */
.breadcrumb-productos {
    background: var(--orange);
    padding: 0;
    margin: 0 auto;
    max-width: 1200px;
}

.breadcrumb-productos .container {
    padding: 0;
    padding-left: 32px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 56px;
}

.breadcrumb-productos span,
.breadcrumb-productos > .container > a {
    color: var(--white);
    font-size: 14px;
    font-weight: 300;
    text-decoration: none;
}

.breadcrumb-productos > .container > a:hover {
    text-decoration: underline;
}

/* Cart Button */
.cart-button {
    background: var(--gray-medium);
    color: var(--white);
    padding: 0 24px;
    text-decoration: none;
    font-size: 14px;
    font-weight: 300;
    display: flex;
    align-items: center;
    gap: 8px;
    height: 100%;
    transition: all 0.3s;
}

.cart-button:hover {
    background: var(--black);
}

/* Featured Products */
.featured-products {
    background: var(--white);
    padding: 48px 0 0 0;
    max-width: 1200px;
    margin: 0 auto;
}

.featured-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0;
    padding: 0 32px;
}

.featured-product {
    display: flex;
    flex-direction: column;
    background: var(--white);
}

.product-image {
    width: 100%;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px;
}

.product-image img {
    width: 60%;
    height: auto;
    display: block;
    object-fit: contain;
}

.product-title {
    background: var(--gray-medium);
    padding: 20px 24px;
    display: flex;
    align-items: center;
    justify-content: flex-start;
}

.featured-product:first-child .product-title {
    background: #9B9B9B;
}

.featured-product:last-child .product-title {
    background: #CCCCCC;
}

.product-title p {
    font-size: 13px;
    font-weight: 300;
    color: var(--black);
    margin: 0;
}

/* Search Section */
.products-search-section {
    background: var(--white);
    padding: 48px 0;
}

.products-search-section h2 {
    font-size: 24px;
    font-weight: 300;
    color: var(--black);
    text-align: center;
    margin-bottom: 32px;
}

.search-box {
    max-width: 600px;
    margin: 0 auto;
    display: flex;
    gap: 0;
    background: var(--gray-light);
    border-radius: 4px;
    overflow: hidden;
}

.search-box input {
    flex: 1;
    padding: 16px 24px;
    border: none;
    background: transparent;
    font-family: var(--font-family);
    font-size: 15px;
    color: var(--black);
}

.search-box input:focus {
    outline: none;
}

.search-box button {
    background: transparent;
    border: none;
    padding: 16px 24px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
}

.search-box button:hover {
    background: rgba(0, 0, 0, 0.05);
}

/* Products Main Section */
.products-main-section {
    margin: 64px auto;
}

.products-layout {
    display: grid;
    grid-template-columns: 300px 1fr;
    gap: 64px;
    align-items: start;
}

/* Categories Sidebar */
.categories-sidebar {
    display: flex;
    flex-direction: column;
    border: 1px solid var(--gray-light);
}

.categories-header {
    background: var(--black);
    padding: 16px 24px;
}

.categories-header h3 {
    font-size: 16px;
    font-weight: 300;
    color: var(--white);
    margin: 0;
}

.categories-content {
    background: var(--white);
    padding: 24px;
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.category-group {
    display: flex;
    flex-direction: column;
    border-bottom: 1px solid var(--gray-light);
    padding-bottom: 16px;
    margin-bottom: 16px;
}

.category-group:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.category-title {
    font-size: 16px;
    font-weight: 300;
    color: var(--black);
    margin: 0;
}

.accordion-trigger {
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 8px 0;
    transition: color 0.3s;
}

.accordion-trigger:hover {
    color: var(--orange);
}

.accordion-icon {
    transition: transform 0.3s;
    flex-shrink: 0;
}

.accordion-trigger.active .accordion-icon {
    transform: rotate(180deg);
}

.category-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: none;
    flex-direction: column;
    gap: 8px;
    padding-top: 12px;
}

.category-list.active {
    display: flex;
}

.category-list li a {
    font-size: 14px;
    color: var(--black);
    text-decoration: none;
    transition: all 0.3s;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 4px 0;
}

.category-list li a:hover {
    color: var(--orange);
    padding-left: 8px;
}

.category-list li.current-cat a {
    color: var(--orange);
    font-weight: 300;
}

.cat-count {
    font-size: 12px;
    color: var(--gray-medium);
    margin-left: 8px;
}

/* Brands Grid Section */
.brands-grid-section {
    display: flex;
    flex-direction: column;
    border: 1px solid var(--gray-light);
}

.brands-header {
    background: var(--black);
    padding: 16px 24px;
}

.brands-header h3 {
    font-size: 16px;
    font-weight: 300;
    color: var(--white);
    margin: 0;
}

.brands-products-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-auto-rows: auto;
    gap: 0;
    background: var(--white);
}

.brand-product-card {
    background: var(--white);
    border-right: 1px solid var(--gray-light);
    border-bottom: 1px solid var(--gray-light);
    padding: 64px 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 200px;
    transition: all 0.3s;
    position: relative;
}

.brand-product-card:nth-child(2n) {
    border-right: none;
}

.brand-product-card:nth-last-child(-n+2) {
    border-bottom: none;
}

.brand-product-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
    z-index: 10;
}

.brand-product-card img {
    max-width: 100%;
    height: auto;
    max-height: 80px;
    object-fit: contain;
}

/* Responsive - Productos */
@media (max-width: 1023px) {
    .featured-grid {
        grid-template-columns: 1fr;
    }
    
    .products-layout {
        grid-template-columns: 1fr;
        gap: 48px;
    }
    
    .brands-products-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 767px) {
    .breadcrumb-productos .container {
        padding-left: 16px;
    }
    
    .cart-button {
        padding: 0 16px;
        font-size: 13px;
    }
    
    .featured-grid {
        padding: 0 16px;
    }
    
    .brands-products-grid {
        grid-template-columns: 1fr;
    }
    
    .brand-product-card {
        padding: 32px;
        min-height: 150px;
    }
}

/* ============================================
   PRODUCTOS CATEGORIA PAGE
   ============================================ */

/* Category Hero */
.category-hero {
    background: var(--orange);
    padding: 32px 0;
    margin: 0 auto;
    max-width: 1200px;
}

.category-hero .container {
    padding: 0 32px;
}

.category-breadcrumb {
    font-size: 13px;
    color: var(--white);
    margin-bottom: 16px;
}

.category-breadcrumb a {
    color: var(--white);
    text-decoration: none;
    transition: opacity 0.3s;
}

.category-breadcrumb a:hover {
    opacity: 0.8;
}

.category-breadcrumb .separator {
    margin: 0 8px;
}

.category-hero h1 {
    font-size: 32px;
    font-weight: 300;
    color: var(--white);
    margin: 0;
}

/* Products Results Bar */
.products-results-bar {
    background: var(--gray-medium);
    padding: 16px 0;
    margin: 0 auto;
    max-width: 1200px;
}

.products-results-bar .container {
    padding: 0 32px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.results-count {
    font-size: 14px;
    color: var(--white);
    font-weight: 300;
}

.sort-dropdown {
    display: flex;
    align-items: center;
    gap: 12px;
    position: relative;
}

.sort-dropdown label {
    font-size: 14px;
    color: var(--white);
}

.sort-dropdown select {
    background: transparent;
    border: none;
    color: var(--white);
    font-family: var(--font-family);
    font-size: 14px;
    font-weight: 300;
    cursor: pointer;
    padding-right: 20px;
    appearance: none;
    outline: none;
}

.sort-dropdown select option {
    background: var(--gray-medium);
    color: var(--white);
}

.dropdown-icon {
    position: absolute;
    right: 0;
    pointer-events: none;
}

/* Products List Section */
.products-list-section {
    margin: 64px auto;
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.product-item {
    background: var(--white);
    border: 1px solid var(--gray-light);
    border-radius: 4px;
    padding: 32px;
    display: grid;
    grid-template-columns: 200px 1fr auto;
    gap: 32px;
    align-items: center;
    transition: all 0.3s;
}

.product-item:hover {
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}

.product-item-image {
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--white);
}

.product-item-image img {
    max-width: 100%;
    height: auto;
    object-fit: contain;
    max-height: 150px;
}

.product-item-info h3 {
    font-size: 18px;
    font-weight: 300;
    color: var(--black);
    margin: 0;
}

.product-item-actions {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.btn-ver-mas,
.btn-add-cart {
    padding: 12px 24px;
    border-radius: 4px;
    text-decoration: none;
    font-size: 14px;
    font-weight: 300;
    text-align: center;
    transition: all 0.3s;
    white-space: nowrap;
}

.btn-ver-mas {
    background: transparent;
    border: 1px solid var(--black);
    color: var(--black);
}

.btn-ver-mas:hover {
    background: var(--black);
    color: var(--white);
}

.btn-add-cart {
    background: var(--black);
    color: var(--white);
    border: 1px solid var(--black);
}

.btn-add-cart:hover {
    background: var(--orange);
    border-color: var(--orange);
}

/* Decorative Pattern */
.decorative-pattern {
    height: 80px;
    background: repeating-linear-gradient(
        90deg,
        var(--orange) 0px,
        var(--orange) 4px,
        var(--white) 4px,
        var(--white) 8px,
        var(--orange) 8px,
        var(--orange) 12px,
        var(--white) 12px,
        var(--white) 16px
    );
    margin: 0 auto;
    max-width: 1200px;
}

/* Responsive - Productos Categoria */
@media (max-width: 1023px) {
    .product-item {
        grid-template-columns: 150px 1fr;
        gap: 24px;
    }
    
    .product-item-actions {
        grid-column: 1 / -1;
        flex-direction: row;
    }
}

@media (max-width: 767px) {
    .category-hero h1 {
        font-size: 24px;
    }
    
    .products-results-bar .container {
        flex-direction: column;
        gap: 12px;
        align-items: flex-start;
    }
    
    .product-item {
        grid-template-columns: 1fr;
        padding: 24px;
        gap: 20px;
    }
    
    .product-item-image {
        justify-content: center;
    }
    
    .product-item-actions {
        flex-direction: column;
    }
    
    .btn-ver-mas,
    .btn-add-cart {
        width: 100%;
    }
}

/* ============================================
   PRODUCTO DETALLE PAGE
   ============================================ */

/* Product Hero */
.product-hero {
    background: var(--orange);
    padding: 24px 0;
    margin: 0 auto;
    max-width: 1200px;
}

.product-hero .container {
    padding: 0 32px;
}

.product-hero-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 16px;
}

.product-breadcrumb {
    font-size: 13px;
    color: var(--white);
}

.product-breadcrumb a {
    color: var(--white);
    text-decoration: none;
    transition: opacity 0.3s;
}

.product-breadcrumb a:hover {
    opacity: 0.8;
}

.product-breadcrumb .separator {
    margin: 0 8px;
}

.btn-volver {
    background: transparent;
    color: var(--white);
    text-decoration: none;
    font-size: 14px;
    font-weight: 300;
    padding: 8px 16px;
    border: 1px solid var(--white);
    border-radius: 4px;
    transition: all 0.3s;
}

.btn-volver:hover {
    background: var(--white);
    color: var(--orange);
}

.product-hero h1 {
    font-size: 36px;
    font-weight: 300;
    color: var(--white);
    margin: 0;
}

/* Product Detail Section */
.product-detail-section {
    margin: 64px auto;
}

.product-detail-card {
    background: var(--white);
    border: 1px solid var(--gray-light);
    border-radius: 4px;
    padding: 48px;
}

.product-detail-main {
    display: grid;
    grid-template-columns: 300px 1fr auto;
    gap: 48px;
    align-items: center;
    padding-bottom: 48px;
    border-bottom: 1px solid var(--gray-light);
    margin-bottom: 48px;
}

.product-detail-image {
    display: flex;
    align-items: center;
    justify-content: center;
}

.product-detail-image img {
    max-width: 100%;
    height: auto;
    object-fit: contain;
    max-height: 250px;
}

.product-detail-info h2 {
    font-size: 24px;
    font-weight: 300;
    color: var(--black);
    margin: 0;
}

.product-detail-actions {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.btn-whatsapp {
    background: #25D366;
    color: var(--white);
    padding: 12px 24px;
    border-radius: 4px;
    text-decoration: none;
    font-size: 14px;
    font-weight: 300;
    display: flex;
    align-items: center;
    gap: 8px;
    justify-content: center;
    transition: all 0.3s;
    white-space: nowrap;
}

.btn-whatsapp:hover {
    background: #128C7E;
}

.btn-add-cart-detail {
    background: var(--black);
    color: var(--white);
    padding: 12px 24px;
    border-radius: 4px;
    text-decoration: none;
    font-size: 14px;
    font-weight: 300;
    text-align: center;
    transition: all 0.3s;
    white-space: nowrap;
}

.btn-add-cart-detail:hover {
    background: var(--orange);
}

/* Product Specifications */
.product-specifications {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
}

.spec-column h3 {
    font-size: 14px;
    font-weight: 300;
    color: var(--black);
    margin: 0 0 16px 0;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.spec-column p {
    font-size: 14px;
    line-height: 1.7;
    color: var(--black);
    margin: 0;
}

.spec-column ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.spec-column ul li {
    font-size: 14px;
    line-height: 1.7;
    color: var(--black);
    padding-left: 16px;
    position: relative;
    margin-bottom: 8px;
}

.spec-column ul li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--orange);
    font-weight: 300;
}

/* Responsive - Producto Detalle */
@media (max-width: 1023px) {
    .product-detail-main {
        grid-template-columns: 200px 1fr;
        gap: 32px;
    }
    
    .product-detail-actions {
        grid-column: 1 / -1;
        flex-direction: row;
    }
    
    .product-specifications {
        grid-template-columns: 1fr;
        gap: 32px;
    }
}

@media (max-width: 767px) {
    .product-hero h1 {
        font-size: 28px;
    }
    
    .product-hero-top {
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
    }
    
    .product-detail-card {
        padding: 24px;
    }
    
    .product-detail-main {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    
    .product-detail-actions {
        flex-direction: column;
    }
    
    .btn-whatsapp,
    .btn-add-cart-detail {
        width: 100%;
    }
}

/* ============================================
   CONTACTO PAGE
   ============================================ */

/* Contact Section */
.contact-section {
    margin: 64px auto;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    margin-bottom: 64px;
}

/* Contact Info */
.contact-info h2 {
    font-size: 28px;
    font-weight: 300;
    color: var(--black);
    margin-bottom: 32px;
}

.contact-item {
    display: flex;
    gap: 20px;
    margin-bottom: 32px;
}

.contact-icon {
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    background: var(--orange);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
}

.contact-details h3 {
    font-size: 18px;
    font-weight: 300;
    color: var(--black);
    margin-bottom: 8px;
}

.contact-details p {
    font-size: 15px;
    line-height: 1.6;
    color: var(--gray-dark);
    margin: 4px 0;
}

.contact-details a {
    color: var(--gray-dark);
    text-decoration: none;
    transition: color 0.3s;
}

.contact-details a:hover {
    color: var(--orange);
}

/* Contact Form */
.contact-form-wrapper h2 {
    font-size: 28px;
    font-weight: 300;
    color: var(--black);
    margin-bottom: 32px;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-group label {
    font-size: 14px;
    font-weight: 300;
    color: var(--black);
}

.form-group input,
.form-group textarea {
    padding: 12px 16px;
    border: 1px solid var(--gray-light);
    border-radius: 4px;
    font-family: var(--font-family);
    font-size: 15px;
    color: var(--black);
    transition: all 0.3s;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--orange);
    box-shadow: 0 0 0 3px rgba(255, 87, 34, 0.1);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.btn-submit {
    background: var(--orange);
    color: var(--white);
    padding: 14px 32px;
    border: none;
    border-radius: 4px;
    font-family: var(--font-family);
    font-size: 16px;
    font-weight: 300;
    cursor: pointer;
    transition: all 0.3s;
    align-self: flex-start;
}

.btn-submit:hover {
    background: var(--orange-hover);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(255, 87, 34, 0.3);
}

.btn-submit:active {
    transform: translateY(0);
}

.btn-submit:disabled {
    background: var(--gray-light);
    cursor: not-allowed;
    transform: none;
    box-shadow: none;
}

/* Form Messages */
.form-message {
    padding: 16px 20px;
    border-radius: 4px;
    font-size: 14px;
    margin-top: 16px;
}

.form-message.success {
    background: #e8f5e9;
    color: #2e7d32;
    border: 1px solid #a5d6a7;
}

.form-message.error {
    background: #ffebee;
    color: #c62828;
    border: 1px solid #ef9a9a;
}

/* Map Section */
.map-section {
    max-width: 1200px;
    margin: 0 auto 64px;
}

.map-container {
    width: 100%;
    height: 450px;
    border-radius: 4px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.map-container iframe {
    width: 100%;
    height: 100%;
}

/* Google Maps Interactive */
#googleMap {
    width: 100%;
    height: 450px;
    min-height: 450px;
}

/* Responsive - Contacto */
@media (max-width: 1023px) {
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 48px;
    }
}

@media (max-width: 767px) {
    .contact-section {
        padding: 48px 0;
        margin-bottom: 24px;
    }
    
    .map-container,
    #googleMap {
        height: 350px;
        min-height: 350px;
    }
    
    .contact-info h2,
    .contact-form-wrapper h2 {
        font-size: 24px;
        margin-bottom: 24px;
    }
    
    .contact-item {
        margin-bottom: 24px;
    }
    
    .map-container {
        height: 350px;
    }
    
    .btn-submit {
        width: 100%;
    }
}

/* ============================================

/* ============================================
   SINGLE PRODUCT - DISEÑO CORRECTO FINAL
   ============================================ */

/* Hero Section - CENTRADO CON FONDO LIMITADO */
.product-hero-single {
    display: flex;
    justify-content: center;
    padding: 0;
    color: var(--white);
}

.product-hero-single .container {
    max-width: 1200px;
    width: 100%;
    margin: 0 auto;
    padding: 32px 20px;
    background: var(--orange);
}

.product-breadcrumb-single {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    margin-bottom: 24px;
    flex-wrap: wrap;
    justify-content: space-between;
}

.product-breadcrumb-single a {
    color: var(--white);
    text-decoration: none;
    transition: opacity 0.3s;
}

.product-breadcrumb-single a:hover {
    opacity: 0.8;
}

.product-breadcrumb-single .separator {
    color: var(--white);
}

.btn-volver-single {
    color: var(--white) !important;
    text-decoration: none;
    font-size: 14px;
    margin-left: auto;
}

.product-hero-single h1 {
    font-size: 36px;
    font-weight: 300;
    color: var(--white);
    margin: 0;
}

/* Product Detail - UNA SOLA CARD BLANCA */
.product-detail-single {
    padding: 0;
    margin: 0;
}

.product-single-card {
    background: white;
    max-width: 100%;
    margin: 0;
    padding: 64px 80px;
}

/* Grid Superior: 3 COLUMNAS - Imagen | Título | Botones */
.product-top-grid {
    display: grid;
    grid-template-columns: 300px 1fr 280px;
    gap: 60px;
    margin-bottom: 80px;
    align-items: center;
}

.product-image-single {
    width: 100%;
}

.product-image-single img {
    width: 100%;
    height: auto;
    object-fit: contain;
}

/* Título en el Centro */
.product-title-center {
    display: flex;
    align-items: center;
    justify-content: center;
}

.product-title-center h2 {
    font-size: 24px;
    font-weight: 600;
    color: var(--black);
    margin: 0;
    text-align: center;
}

/* Botones a la Derecha - VERTICALES */
.product-actions-right {
    display: flex;
    flex-direction: column;
    gap: 16px;
    align-items: stretch;
}

/* Botón WhatsApp - Verde con ícono (COMPACTO) */
.btn-whatsapp-single {
    background: var(--green);
    color: var(--white);
    padding: 10px 20px;
    border-radius: 4px;
    text-decoration: none;
    font-size: 14px;
    font-weight: 300;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    transition: all 0.3s;
    border: none;
    min-height: 42px;
}

.btn-whatsapp-single:hover {
    background: var(--green-hover);
}

/* Botón Añadir al Carrito - Outline negro (COMPACTO) */
.btn-add-cart-single {
    background: transparent;
    color: var(--black);
    padding: 10px 20px;
    border-radius: 4px;
    text-decoration: none;
    font-size: 14px;
    font-weight: 300;
    border: 1px solid var(--black);
    transition: all 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    min-height: 42px;
}

.btn-add-cart-single:hover {
    background: var(--black);
    color: var(--white);
}

/* Grid Inferior: Especificaciones */
.product-specs-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
}

.spec-column-single h3 {
    font-size: 14px;
    font-weight: 300;
    color: var(--black);
    margin: 0 0 24px 0;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.spec-column-single p,
.spec-column-single .spec-content {
    font-size: 14px;
    line-height: 1.8;
    color: var(--black);
    font-weight: 300;
}

.spec-column-single .spec-content a {
    color: var(--black);
    text-decoration: none;
    border-bottom: 1px solid var(--gray-light);
    transition: border-color 0.3s;
}

.spec-column-single .spec-content a:hover {
    border-bottom-color: var(--primary-color);
}

.spec-column-single ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.spec-column-single ul li {
    font-size: 14px;
    line-height: 1.8;
    color: var(--black);
    font-weight: 300;
    padding-left: 20px;
    position: relative;
    margin-bottom: 8px;
}

.spec-column-single ul li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--black);
}

/* Responsive */
@media (max-width: 1023px) {
    .product-single-card {
        padding: 48px 40px;
    }
    
    .product-top-grid {
        grid-template-columns: 1fr;
        gap: 32px;
        text-align: center;
    }
    
    .product-title-center h2 {
        font-size: 28px;
    }
    
    .product-specs-grid {
        grid-template-columns: 1fr;
        gap: 48px;
    }
    
    .product-hero-single h1 {
        font-size: 28px;
    }
}

@media (max-width: 767px) {
    .product-single-card {
        padding: 32px 24px;
    }
    
    .product-hero-single h1 {
        font-size: 24px;
    }
    
    .product-title-center h2 {
        font-size: 22px;
    }
}

/* ============================================
   JOB APPLICATION MODAL
   ============================================ */

.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10000;
    padding: 20px;
}

.modal-content {
    background: var(--white);
    border-radius: 0;
    max-width: 600px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
    position: relative;
    padding: 48px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
}

.modal-close {
    position: absolute;
    top: 16px;
    right: 16px;
    background: transparent;
    border: none;
    font-size: 32px;
    line-height: 1;
    cursor: pointer;
    color: var(--gray-medium);
    transition: color 0.3s;
    padding: 0;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.modal-close:hover {
    color: var(--black);
}

.modal-content h2 {
    font-size: 32px;
    font-weight: 400;
    margin: 0 0 16px 0;
    color: var(--black);
}

.modal-description {
    font-size: 16px;
    color: var(--gray-medium);
    margin: 0 0 32px 0;
    line-height: 1.6;
}

.form-group {
    margin-bottom: 24px;
}

.form-group label {
    display: block;
    font-size: 14px;
    font-weight: 500;
    color: var(--black);
    margin-bottom: 8px;
}

.form-group .required {
    color: var(--orange);
}

.form-group input[type="text"],
.form-group input[type="tel"],
.form-group input[type="email"],
.form-group textarea {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid var(--gray-light);
    background: var(--white);
    font-size: 15px;
    font-family: 'Space Grotesk', sans-serif;
    transition: border-color 0.3s;
}

.form-group input[type="text"]:focus,
.form-group input[type="tel"]:focus,
.form-group input[type="email"]:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--orange);
}

.form-group input[type="file"] {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid var(--gray-light);
    background: var(--white);
    font-size: 14px;
    font-family: 'Space Grotesk', sans-serif;
    cursor: pointer;
}

.form-group small {
    display: block;
    font-size: 13px;
    color: var(--gray-medium);
    margin-top: 6px;
}

.form-actions {
    margin-top: 32px;
}

.btn-submit {
    background: var(--orange);
    color: var(--white);
    border: none;
    padding: 14px 32px;
    font-size: 16px;
    font-weight: 500;
    font-family: 'Space Grotesk', sans-serif;
    cursor: pointer;
    transition: background 0.3s;
    width: 100%;
}

.btn-submit:hover {
    background: #e64a19;
}

.btn-submit:disabled {
    background: var(--gray-light);
    cursor: not-allowed;
}

.form-message {
    margin-top: 16px;
    padding: 12px 16px;
    border-radius: 0;
    font-size: 14px;
    line-height: 1.5;
}

.form-message.success {
    background: #e8f5e9;
    color: #2e7d32;
    border-left: 4px solid #2e7d32;
}

.form-message.error {
    background: #ffebee;
    color: #c62828;
    border-left: 4px solid #c62828;
}

/* Responsive Modal */
@media (max-width: 767px) {
    .modal-content {
        padding: 32px 24px;
    }

    .modal-content h2 {
        font-size: 24px;
    }

    .btn-submit {
        padding: 12px 24px;
        font-size: 15px;
    }
}

/* ============================================
   TOOLTIP - COMING SOON
   ============================================ */

.brochure-coming-soon {
    position: relative;
    cursor: not-allowed !important;
    opacity: 0.6;
}

.brochure-coming-soon::after {
    content: attr(data-tooltip);
    position: absolute;
    bottom: 100%;
    left: 50%;
    transform: translateX(-50%) translateY(-8px);
    background: var(--black);
    color: var(--white);
    padding: 8px 12px;
    border-radius: 4px;
    font-size: 13px;
    white-space: nowrap;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s, transform 0.3s;
    z-index: 1000;
}

.brochure-coming-soon::before {
    content: '';
    position: absolute;
    bottom: 100%;
    left: 50%;
    transform: translateX(-50%);
    border: 6px solid transparent;
    border-top-color: var(--black);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s;
    z-index: 1000;
}

.brochure-coming-soon:hover::after {
    opacity: 1;
    transform: translateX(-50%) translateY(-16px);
}

.brochure-coming-soon:hover::before {
    opacity: 1;
}

/* ============================================
   PROYECTO ACCORDION
   ============================================ */

.proyecto-accordion {
    border-top: 1px solid var(--gray-light);
}

.proyecto-accordion-header {
    background: var(--white);
    padding: 24px 0;
    cursor: pointer;
    transition: background 0.3s;
}

.proyecto-accordion-header:hover {
    background: #fafafa;
}

.proyecto-accordion-header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.proyecto-accordion-title {
    font-size: 24px;
    font-weight: 300;
    margin: 0;
    color: var(--gray-dark);
    transition: all 0.3s;
}

.proyecto-accordion.active .proyecto-accordion-title {
    font-size: 36px;
    font-weight: 400;
    color: var(--black);
}

.proyecto-accordion-arrow {
    width: 20px;
    height: 20px;
    transition: transform 0.3s;
    flex-shrink: 0;
    opacity: 1;
}

.proyecto-accordion .proyecto-accordion-arrow {
    transform: rotate(90deg);
}

.proyecto-accordion.active .proyecto-accordion-arrow {
    transform: rotate(-90deg);
}

.proyecto-accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s ease-out;
}

.proyecto-accordion.active .proyecto-accordion-content {
    max-height: 10000px;
    transition: max-height 0.8s ease-in;
}

.proyecto-accordion-content section {
    padding-top: 32px;
    padding-bottom: 32px;
}

.proyecto-accordion-content .project-description-section {
    padding-top: 0;
}

.proyecto-accordion-content .project-info-section {
    padding-bottom: 48px;
}

/* Responsive */
@media (max-width: 767px) {
    .proyecto-accordion-header {
        padding: 16px 0;
    }
    
    .proyecto-accordion-title {
        font-size: 18px;
        padding-right: 16px;
    }
    
    .proyecto-accordion.active .proyecto-accordion-title {
        font-size: 26px;
    }
    
    .proyecto-accordion-arrow {
        width: 16px;
        height: 16px;
    }
}

/* ============================================
   PROJECT SERVICIOS SECTION
   ============================================ */

.project-servicios-section {
    padding: 64px 0;
    background: var(--white);
    margin-top: 48px;
    border-top: 1px solid var(--gray-light);
}

.project-servicios-section .section-title {
    margin-bottom: 32px;
}

.project-servicios-section .project-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.project-servicios-section .project-list li {
    padding: 12px 0;
    border-bottom: 1px solid var(--gray-light);
}

.project-servicios-section .project-list li:last-child {
    border-bottom: none;
}

.project-servicios-section .project-list a {
    color: var(--black);
    text-decoration: none;
    display: flex;
    align-items: center;
    transition: color 0.3s;
}

.project-servicios-section .project-list a:hover {
    color: var(--primary-color);
}

.project-servicios-section .project-list a::before {
    content: '→';
    margin-right: 12px;
    color: var(--primary-color);
}

@media (max-width: 767px) {
    .project-servicios-section {
        padding: 32px 0;
        margin-top: 24px;
    }
    
    .project-servicios-section .section-title {
        margin-bottom: 24px;
    }
}

/* ============================================
   CLIENTES SECTION
   ============================================ */

.clientes-section {
    padding: 80px 0;
    background: var(--white);
    border-top: 1px solid var(--gray-light);
}

.clientes-title {
    font-size: 32px;
    text-align: center;
    margin-bottom: 48px;
    color: var(--black);
}

.clientes-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 24px;
    align-items: center;
}

.cliente-item {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 16px;
    background: var(--white);
    border-radius: 8px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.cliente-item:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0,0,0,0.1);
}

.cliente-item img {
    max-width: 100%;
    max-height: 80px;
    width: auto;
    height: auto;
    object-fit: contain;
    filter: grayscale(100%);
    opacity: 0.7;
    transition: filter 0.3s ease, opacity 0.3s ease;
}

.cliente-item:hover img {
    filter: grayscale(0%);
    opacity: 1;
}

/* Responsive Clientes */
@media (max-width: 1024px) {
    .clientes-grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 20px;
    }
}

@media (max-width: 767px) {
    .clientes-section {
        padding: 48px 0;
    }
    
    .clientes-title {
        font-size: 24px;
        margin-bottom: 32px;
    }
    
    .clientes-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 16px;
    }
    
    .cliente-item {
        padding: 12px;
    }
    
    .cliente-item img {
        max-height: 60px;
    }
}

@media (max-width: 480px) {
    .clientes-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }
    
    .cliente-item img {
        max-height: 50px;
    }
}
