/* ========== RESET Y FUENTES ========== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-orange: #E67E22;
    --secondary-blue: #2C5F7C;
    --dark: #1a1a1a;
    --gray: #666;
    --light-gray: #f5f5f5;
    --white: #ffffff;
    --transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

body {
    font-family: 'Circular Std', 'Montserrat', sans-serif;
    line-height: 1.6;
    color: var(--dark);
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* ========== HEADER ========== */
header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: var(--white);
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.08);
    z-index: 1000;
    transition: var(--transition);
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.8rem 3rem;
    max-width: 1400px;
    margin: 0 auto;
}

.logo img {
    height: 45px;
    width: auto;
    transition: var(--transition);
}

.logo img:hover {
    opacity: 0.85;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 2.5rem;
    align-items: center;
}

.nav-links a {
    text-decoration: none;
    color: var(--dark);
    font-weight: 500;
    font-size: 0.875rem;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    transition: var(--transition);
    padding: 0.5rem 0;
}

.nav-links a:hover {
    color: var(--primary-orange);
}

.dropdown {
    position: relative;
}

.dropdown-menu {
    position: absolute;
    top: calc(100% + 0.8rem);
    left: 50%;
    transform: translateX(-50%) translateY(-10px);
    background: var(--white);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
    list-style: none;
    min-width: 200px;
    padding: 0.5rem 0;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
    border-radius: 6px;
}

.dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}

.dropdown-menu li {
    width: 100%;
}

.dropdown-menu a {
    display: block;
    padding: 0.7rem 1.5rem;
    font-size: 0.85rem;
    text-transform: none;
    letter-spacing: 0.3px;
}

.dropdown-menu a:hover {
    background: var(--light-gray);
    color: var(--primary-orange);
}

/* Submenús de segundo nivel */
.dropdown-submenu {
    position: relative;
}

.sub-dropdown-menu {
    position: absolute;
    top: 0;
    left: 100%;
    background: var(--white);
    min-width: 200px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
    border-radius: 6px;
    padding: 0.5rem 0;
    opacity: 0;
    visibility: hidden;
    transform: translateX(-10px);
    transition: var(--transition);
    z-index: 1001;
    list-style: none;
}

.dropdown-submenu:hover .sub-dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateX(0);
}

.sub-dropdown-menu li {
    width: 100%;
}

.sub-dropdown-menu a {
    display: block;
    padding: 0.7rem 1.5rem;
    font-size: 0.85rem;
    color: var(--dark);
    text-decoration: none;
    transition: var(--transition);
}

.sub-dropdown-menu a:hover {
    background: var(--light-gray);
    color: var(--primary-orange);
}

.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
}

.hamburger span {
    width: 25px;
    height: 2px;
    background: var(--dark);
    transition: var(--transition);
    border-radius: 2px;
}

.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(7px, 7px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}

/* ========== HERO SLIDER ========== */
.hero-slider {
    margin-top: 62px;
    height: 70vh;
    min-height: 500px;
    max-height: 650px;
    position: relative;
    overflow: hidden;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity 1s ease-in-out;
    display: flex;
    align-items: center;
    justify-content: center;
}

.slide.active {
    opacity: 1;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.4));
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: var(--white);
}

.hero-content h1 {
    font-size: 4rem;
    font-weight: 700;
    letter-spacing: 2px;
    margin-bottom: 2rem;
    text-shadow: 0 3px 20px rgba(0, 0, 0, 0.5);
    animation: fadeInUp 0.8s ease;
}

.hero-dots {
    display: flex;
    gap: 0.8rem;
    justify-content: center;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.4);
    cursor: pointer;
    transition: var(--transition);
    border: 2px solid transparent;
}

.dot.active {
    background: var(--white);
    border-color: var(--white);
    transform: scale(1.1);
}

.dot:hover {
    background: rgba(255, 255, 255, 0.7);
}

.arrow-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid rgba(255, 255, 255, 0.3);
    width: 60px;
    height: 60px;
    border-radius: 50%;
    cursor: pointer;
    z-index: 3;
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
}

.arrow-btn:hover {
    background: rgba(255, 255, 255, 0.25);
    border-color: rgba(255, 255, 255, 0.5);
    transform: translateY(-50%) scale(1.08);
}

.arrow-btn.left {
    left: 3rem;
}

.arrow-btn.right {
    right: 3rem;
}

/* ========== SECCIÓN EXPERIENCIA ========== */
.experience-section {
    padding: 5rem 0;
    background: var(--white);
}

.experience-section .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.experience-content h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-orange);
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.experience-content p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--gray);
    margin-bottom: 2.5rem;
}

.btn-primary {
    display: inline-block;
    background: var(--primary-orange);
    color: var(--white);
    padding: 1rem 2.5rem;
    font-size: 0.95rem;
    font-weight: 600;
    border-radius: 50px;
    text-decoration: none;
    transition: var(--transition);
    border: none;
    cursor: pointer;
}

.btn-primary:hover {
    background: #d35400;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(230, 126, 34, 0.3);
}

.experience-image {
    width: 100%;
    height: 400px;
    overflow: hidden;
    border-radius: 8px;
}

.experience-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.experience-image:hover img {
    transform: scale(1.03);
}

.placeholder-image {
    width: 100%;
    height: 100%;
    background: var(--light-gray);
    border-radius: 8px;
    position: relative;
    overflow: hidden;
}

.placeholder-image::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100px;
    height: 100px;
    background: rgba(0, 0, 0, 0.05);
    border-radius: 50%;
}

/* ========== SECCIÓN MAQUINARIA ========== */
.machinery-section {
    padding: 5rem 0;
    background: var(--light-gray);
}

.machinery-section h2 {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 1rem;
}

.machinery-description {
    text-align: center;
    font-size: 1.1rem;
    color: var(--gray);
    max-width: 800px;
    margin: 0 auto 4rem;
    line-height: 1.8;
}

.machinery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}

.machinery-card {
    background: var(--white);
    padding: 3rem 2rem;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
    cursor: pointer;
    text-decoration: none;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.machinery-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.15);
}

.machinery-logo img {
    max-width: 180px;
    height: auto;
    transition: var(--transition);
}

.machinery-card:hover .machinery-logo img {
    transform: scale(1.05);
}

/* ========== SECCIÓN SERVICIOS ========== */
.services-section {
    padding: 5rem 0;
    background: var(--white);
}

.services-section h2 {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 4rem;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 2.5rem;
}

.service-item {
    text-align: center;
    text-decoration: none;
    color: inherit;
    display: block;
    transition: var(--transition);
    cursor: pointer;
    position: relative;
    z-index: 1;
}

.service-item:hover {
    transform: translateY(-5px);
}

.service-item:hover .service-icon {
    color: var(--secondary-blue);
}

.service-item:hover h3 {
    color: var(--primary-orange);
}

.service-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-orange);
}

.service-item h3 {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--dark);
}

/* ========== SECCIÓN REVISTA PROMODIS ========== */
.promo-banner {
    background: #D32F2F;
    padding: 5rem 0;
    color: var(--white);
}

.promo-banner .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
    max-width: 1400px;
}

.promo-content h2 {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 1.5rem;
}

.promo-validity {
    font-size: 1.15rem;
    font-weight: 400;
    margin-bottom: 2rem;
    display: block;
}

.promo-description {
    font-size: 1.1rem;
    line-height: 1.7;
    font-weight: 300;
    margin-bottom: 2.5rem;
}

.btn-download-card {
    display: inline-block;
    background: var(--white);
    color: #D32F2F;
    padding: 1rem 2.5rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: var(--transition);
}

.btn-download-card:hover {
    background: #f5f5f5;
    transform: translateY(-2px);
}

.promo-preview {
    display: flex;
    justify-content: center;
    align-items: center;
}

.revista-cover {
    width: 100%;
    max-width: 400px;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.4);
    transition: var(--transition);
}

.revista-cover:hover {
    transform: translateY(-5px);
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.5);
}

.revista-cover img {
    width: 100%;
    height: auto;
    display: block;
}

/* ========== PÁGINA DE CONTACTO ========== */
.contact-hero {
    background: linear-gradient(135deg, var(--secondary-blue) 0%, #1e4158 100%);
    padding: 6rem 0 4rem;
    text-align: center;
    color: var(--white);
    margin-bottom: 6rem;
}

.contact-hero h1 {
    font-size: 3.5rem;
    font-weight: 700;
    margin: 0;
}

.location-section {
    padding: 0 0 6rem 0;
}

.location-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 3rem;
    display: grid;
    grid-template-columns: 1.3fr 1fr;
    gap: 8rem;
    align-items: center;
}

.location-map {
    width: 100%;
    height: 450px;
    overflow: hidden;
}

.location-map iframe {
    width: 100%;
    height: 100%;
    display: block;
    filter: grayscale(100%) contrast(1.1);
}

.location-info {
    padding: 0;
}

.location-info h2 {
    font-size: 1.8rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 3.5rem;
    letter-spacing: 0.3px;
}

.contact-items {
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 2rem;
}

.contact-icon {
    flex-shrink: 0;
    width: 22px;
    height: 22px;
    color: #1a1a1a;
    margin-top: 0.1rem;
}

.contact-icon svg {
    width: 100%;
    height: 100%;
}

.contact-text {
    flex: 1;
}

.contact-label {
    font-size: 0.95rem;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 0.7rem;
    display: block;
}

.contact-text p {
    font-size: 1rem;
    color: #555;
    line-height: 1.8;
    margin: 0.2rem 0;
}

.contact-text a {
    color: #1a1a1a;
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition);
    font-size: 1.1rem;
}

.contact-text a:hover {
    color: var(--primary-orange);
}

/* ========== PÁGINA DE EMPLEO ========== */
.empleo-content {
    padding: 5rem 0;
}

.empleo-intro {
    max-width: 900px;
    margin: 0 auto 5rem;
    text-align: center;
}

.empleo-intro h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 1.5rem;
}

.empleo-intro p {
    font-size: 1.15rem;
    line-height: 1.8;
    color: var(--gray);
}

.ofertas-section {
    max-width: 1000px;
    margin: 0 auto 5rem;
}

.ofertas-section h3 {
    font-size: 2rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 2rem;
    text-align: center;
}

.no-ofertas {
    text-align: center;
    font-size: 1.1rem;
    color: var(--gray);
    padding: 3rem;
    background: var(--light-gray);
    border-radius: 8px;
}

.oferta-card {
    background: var(--white);
    padding: 2.5rem;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    margin-bottom: 2rem;
    transition: var(--transition);
}

.oferta-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.oferta-card h4 {
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--secondary-blue);
    margin-bottom: 1rem;
}

.oferta-details {
    display: flex;
    gap: 2rem;
    margin-bottom: 1.5rem;
}

.oferta-location,
.oferta-type {
    font-size: 0.95rem;
    color: var(--gray);
}

.oferta-card p {
    font-size: 1.05rem;
    line-height: 1.7;
    color: var(--gray);
    margin-bottom: 2rem;
}

.btn-apply {
    display: inline-block;
    background: var(--primary-orange);
    color: var(--white);
    padding: 0.9rem 2rem;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition);
}

.btn-apply:hover {
    background: #e67e22;
    transform: translateY(-2px);
}

.empleo-cta {
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
    padding: 3rem;
    background: linear-gradient(135deg, var(--secondary-blue) 0%, #1e4158 100%);
    border-radius: 12px;
    color: var(--white);
}

.empleo-cta h3 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.empleo-cta p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    opacity: 0.95;
}

/* ========== PÁGINA DE NOTICIAS (TODAS EN SCROLL) ========== */
.noticias-listado {
    padding: 4rem 0;
    background: var(--white);
}

.noticia-completa {
    max-width: 900px;
    margin: 0 auto 4rem;
}

.noticia-imagen {
    width: 100%;
    max-height: 500px;
    overflow: hidden;
    border-radius: 8px;
    margin-bottom: 2rem;
}

.noticia-imagen img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.noticia-info h2 {
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 0.5rem;
}

.noticia-fecha {
    font-size: 0.9rem;
    color: var(--gray);
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 600;
    margin-bottom: 1.5rem;
    display: block;
}

.noticia-texto p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--dark);
    margin-bottom: 1.2rem;
}

.noticia-texto p strong {
    color: var(--secondary-blue);
    font-weight: 700;
}

.noticia-separador {
    border: none;
    border-top: 2px solid var(--light-gray);
    margin: 4rem auto;
    max-width: 900px;
}

/* ========== NOTICIA INDIVIDUAL ========== */
.noticia-individual {
    background: var(--white);
}

.noticia-header {
    background: var(--light-gray);
    padding: 2rem 0 3rem;
    margin-top: 62px;
}

.volver-link {
    display: inline-block;
    color: var(--secondary-blue);
    text-decoration: none;
    font-weight: 600;
    margin-bottom: 1.5rem;
    transition: var(--transition);
}

.volver-link:hover {
    color: var(--primary-orange);
}

.noticia-header h1 {
    font-size: 3rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 0.5rem;
    line-height: 1.2;
}

.noticia-fecha {
    font-size: 0.95rem;
    color: var(--gray);
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 600;
}

.noticia-imagen-principal {
    width: 100%;
    max-height: 600px;
    overflow: hidden;
}

.noticia-imagen-principal img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.noticia-body {
    padding: 4rem 0;
}

.noticia-contenido {
    max-width: 800px;
    margin: 0 auto;
}

.noticia-contenido p {
    font-size: 1.15rem;
    line-height: 1.9;
    color: var(--dark);
    margin-bottom: 1.5rem;
}

.noticia-contenido p strong {
    color: var(--secondary-blue);
    font-weight: 700;
}

/* ========== ANIMATIONS ========== */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(25px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ========== SECCIÓN NOTICIAS ========== */
.news-section {
    padding: 5rem 0;
    background: var(--white);
}

.news-section h2 {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 4rem;
}

.news-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
    margin-bottom: 3rem;
}

.news-card {
    background: var(--white);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
    transition: var(--transition);
}

.news-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.15);
}

.news-image {
    width: 100%;
    height: 220px;
    overflow: hidden;
}

.news-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.news-card:hover .news-image img {
    transform: scale(1.08);
}

.news-content {
    padding: 1.8rem;
}

.news-content h3 {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--dark);
    margin-bottom: 0.8rem;
    line-height: 1.4;
}

.news-date {
    font-size: 0.85rem;
    color: var(--gray);
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.news-excerpt {
    font-size: 0.95rem;
    color: var(--gray);
    line-height: 1.6;
    margin-bottom: 1.2rem;
}

.news-link {
    display: inline-flex;
    align-items: center;
    color: var(--primary-orange);
    font-weight: 600;
    font-size: 0.9rem;
    text-decoration: none;
    transition: var(--transition);
}

.news-link:hover {
    color: #d35400;
    transform: translateX(5px);
}

.news-button-container {
    text-align: center;
}

.btn-secondary {
    display: inline-block;
    background: var(--secondary-blue);
    color: var(--white);
    padding: 1rem 3rem;
    font-size: 0.95rem;
    font-weight: 600;
    border-radius: 50px;
    text-decoration: none;
    transition: var(--transition);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.btn-secondary:hover {
    background: #1e4158;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(44, 95, 124, 0.3);
}

/* ========== FOOTER ========== */
.main-footer {
    background: var(--secondary-blue);
    color: var(--white);
}

.footer-content {
    padding: 4rem 0 3rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2.5fr 1fr 1fr 1fr 1.3fr;
    gap: 2rem;
    align-items: start;
}

.footer-column h4 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    color: var(--white);
}

.footer-logo {
    height: 120px;
    width: auto;
    margin-bottom: 0.5rem;
}

.footer-description {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.4;
    font-weight: 500;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 0.8rem;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    font-size: 0.95rem;
    transition: var(--transition);
}

.footer-links a:hover {
    color: var(--white);
    padding-left: 5px;
}

.social-icons {
    display: flex;
    gap: 0.6rem;
    flex-wrap: nowrap;
    align-items: center;
}

.social-icons a {
    width: 36px;
    height: 36px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    transition: var(--transition);
    flex-shrink: 0;
}

.social-icons a:hover {
    background: var(--primary-orange);
    transform: translateY(-3px);
}

.footer-brands {
    background: rgba(0, 0, 0, 0.15);
    padding: 2.5rem 0;
}

.brands-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
    align-items: center;
    justify-items: center;
}

.brands-grid img {
    max-width: 180px;
    height: auto;
    object-fit: contain;
    opacity: 0.95;
    transition: var(--transition);
}

.brands-grid img:hover {
    opacity: 1;
    transform: scale(1.05);
}

.footer-bottom {
    background: rgba(0, 0, 0, 0.2);
    padding: 1.5rem 0;
    text-align: center;
}

.footer-bottom p {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
}

/* ========== PÁGINAS DE SERVICIOS (TIENDA Y TALLER) ========== */
.service-hero {
    margin-top: 62px;
    height: 40vh;
    min-height: 300px;
    max-height: 400px;
    background: linear-gradient(135deg, var(--secondary-blue) 0%, #1e4158 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.tienda-hero {
    background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)),
                linear-gradient(135deg, var(--secondary-blue) 0%, #1e4158 100%);
}

.taller-hero {
    background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)),
                linear-gradient(135deg, var(--secondary-blue) 0%, #1e4158 100%);
}

.recambios-hero {
    background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)),
                linear-gradient(135deg, var(--secondary-blue) 0%, #1e4158 100%);
}

.service-hero .hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(44, 95, 124, 0.7) 0%, rgba(30, 65, 88, 0.7) 100%);
    z-index: 1;
}

.service-hero .container {
    position: relative;
    z-index: 2;
}

.service-hero h1 {
    font-size: 4rem;
    font-weight: 700;
    color: var(--white);
    text-align: center;
    letter-spacing: 2px;
    text-shadow: 0 3px 20px rgba(0, 0, 0, 0.5);
}

.service-content-section {
    padding: 5rem 0;
    background: var(--white);
}

.service-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.service-text h2 {
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--secondary-blue);
    margin-bottom: 2rem;
    line-height: 1.3;
}

.service-text p {
    font-size: 1.05rem;
    line-height: 1.8;
    color: var(--gray);
    margin-bottom: 1.5rem;
}

.service-image-box {
    width: 100%;
    height: 450px;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

.service-image-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.service-image-box:hover img {
    transform: scale(1.05);
}

.placeholder-taller {
    width: 100%;
    height: 100%;
    background: var(--light-gray);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 1rem;
}

.placeholder-taller svg {
    color: var(--primary-orange);
}

.placeholder-taller p {
    font-size: 1.1rem;
    color: var(--gray);
    font-weight: 600;
}

.service-cta {
    padding: 5rem 0;
    background: var(--light-gray);
    text-align: center;
}

.service-cta h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--secondary-blue);
    margin-bottom: 1rem;
}

.service-cta p {
    font-size: 1.2rem;
    color: var(--gray);
    margin-bottom: 2.5rem;
}

.btn-cta {
    display: inline-block;
    background: var(--primary-orange);
    color: var(--white);
    padding: 1.2rem 3rem;
    font-size: 1.1rem;
    font-weight: 700;
    border-radius: 50px;
    text-decoration: none;
    transition: var(--transition);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.btn-cta:hover {
    background: #d35400;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(230, 126, 34, 0.3);
}

/* ========== PÁGINA DE CONTACTO (bloque duplicado consolidado) ========== */
.contact-hero {
    background: linear-gradient(135deg, var(--secondary-blue) 0%, #1e4158 100%);
    padding: 6rem 0 4rem;
    text-align: center;
    color: var(--white);
    margin-bottom: 5rem;
}

.contact-hero h1 {
    font-size: 3.5rem;
    font-weight: 700;
    margin: 0;
}

.location-section {
    padding: 0 0 6rem 0;
}

.location-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 4rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.location-map {
    width: 100%;
    height: 400px;
    background: transparent;
    overflow: hidden;
}

.location-map iframe {
    width: 100%;
    height: 100%;
    display: block;
    filter: grayscale(100%) contrast(1.1);
}

.location-info {
    padding-left: 2rem;
}

.location-info h2 {
    font-size: 3rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 0.5rem;
    letter-spacing: 0px;
    line-height: 1.2;
}

.location-info h2::after {
    content: '';
    display: block;
    width: 80px;
    height: 3px;
    background: #1a1a1a;
    margin-top: 1rem;
    margin-bottom: 3rem;
}

.contact-items {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 1.2rem;
}

.contact-icon {
    flex-shrink: 0;
    width: 28px;
    height: 28px;
    color: #1a1a1a;
    margin-top: 0.3rem;
}

.contact-icon svg {
    width: 100%;
    height: 100%;
    stroke-width: 1.5;
}

.contact-text {
    flex: 1;
}

.contact-label {
    font-size: 1.1rem;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 0.4rem;
    display: block;
}

.contact-text p {
    font-size: 1rem;
    color: #666;
    line-height: 1.6;
    margin: 0.1rem 0;
}

.contact-text a {
    color: #1a1a1a;
    text-decoration: none;
    font-weight: 500;
    transition: var(--transition);
    font-size: 1rem;
}

.contact-text a:hover {
    color: var(--primary-orange);
}

/* ========== RESPONSIVE ========== */
@media (max-width: 1024px) {
    nav {
        padding: 0.8rem 2rem;
    }

    .hero-content h1 {
        font-size: 3rem;
    }

    .machinery-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .services-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .news-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }

    .brands-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .service-layout {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .location-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .selector-tabs {
        gap: 0.5rem;
    }

    .tab-btn {
        padding: 0.7rem 1.3rem;
        font-size: 0.85rem;
    }
}

@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }

    .nav-links {
        position: fixed;
        top: 62px;
        left: -100%;
        flex-direction: column;
        background: var(--white);
        width: 100%;
        height: calc(100vh - 62px);
        padding: 2rem;
        gap: 0;
        transition: var(--transition);
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
        overflow-y: auto;
        align-items: flex-start;
    }

    .nav-links.active {
        left: 0;
    }

    .nav-links li {
        width: 100%;
        border-bottom: 1px solid var(--light-gray);
        padding: 1rem 0;
    }

    .dropdown-menu {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        padding: 0.5rem 0 0 1rem;
        display: none;
        background: transparent;
    }

    .dropdown.active .dropdown-menu {
        display: block;
    }

    .sub-dropdown-menu {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        padding: 0.3rem 0 0.3rem 1rem;
        display: none;
        background: transparent;
    }

    .dropdown-submenu.active .sub-dropdown-menu {
        display: block;
    }

    .hero-slider {
        height: 60vh;
        min-height: 400px;
    }

    .hero-content h1 {
        font-size: 2rem;
    }

    .arrow-btn {
        width: 50px;
        height: 50px;
    }

    .arrow-btn.left {
        left: 1.5rem;
    }

    .arrow-btn.right {
        right: 1.5rem;
    }

    .experience-section .container {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .machinery-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .news-grid {
        grid-template-columns: 1fr;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .brands-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .service-hero h1 {
        font-size: 2.5rem;
    }

    .service-layout {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .service-image-box {
        height: 350px;
    }

    .service-cta h2 {
        font-size: 2rem;
    }

    .promo-banner .container {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .promo-content h2 {
        font-size: 2.5rem;
    }

    .revista-cover {
        max-width: 350px;
    }

    .contact-hero h1 {
        font-size: 2.5rem;
    }

    .contact-hero p {
        font-size: 1.1rem;
    }

    .selector-tabs {
        flex-direction: column;
    }

    .tab-btn {
        width: 100%;
    }

    .location-grid {
        padding: 2rem;
    }

    .form-wrapper {
        padding: 2rem;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .noticia-completa {
        margin-bottom: 3rem;
    }

    .noticia-imagen {
        max-height: 280px;
        margin-bottom: 1.5rem;
    }

    .noticia-info h2 {
        font-size: 1.6rem;
    }

    .noticia-texto p {
        font-size: 1rem;
    }

    .oferta-details {
        flex-direction: column;
        gap: 0.5rem;
    }

    .empleo-cta {
        padding: 2rem 1.5rem;
    }

    .empleo-cta h3 {
        font-size: 1.5rem;
    }
}

@media (max-width: 480px) {
    .hero-content h1 {
        font-size: 1.8rem;
    }

    .services-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .experience-content h2,
    .machinery-section h2,
    .services-section h2,
    .news-section h2 {
        font-size: 2rem;
    }

    .service-hero {
        height: 30vh;
        min-height: 250px;
    }

    .service-hero h1 {
        font-size: 2rem;
    }

    .service-text h2 {
        font-size: 1.8rem;
    }

    .service-image-box {
        height: 300px;
    }

    .promo-content h2 {
        font-size: 2rem;
    }

    .promo-banner {
        padding: 3rem 0;
    }

    .revista-cover {
        max-width: 300px;
    }

    .location-section {
        padding: 0 0 3rem 0;
    }

    .location-container {
        grid-template-columns: 1fr;
        gap: 3rem;
        padding: 0 1.5rem;
    }

    .location-map {
        height: 350px;
    }

    .location-info {
        padding-right: 0;
    }

    .location-info h2 {
        font-size: 1.6rem;
        margin-bottom: 2rem;
    }

    .contact-items {
        gap: 2rem;
    }

    .contact-item {
        gap: 1rem;
    }

    .contact-hero {
        padding: 3rem 0 2rem;
        margin-bottom: 3rem;
    }

    .contact-hero h1 {
        font-size: 2rem;
    }

    .form-header h2 {
        font-size: 2rem;
    }

    .location-details h2 {
        font-size: 1.5rem;
    }
}

/* ========== BANNER CTA RECAMBIOS ========== */
.cta-banner {
    background: linear-gradient(135deg, var(--primary-orange) 0%, #d97706 100%);
    padding: 4rem 0;
    text-align: center;
}

.cta-banner-content h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 1rem;
}

.cta-banner-content p {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: 2rem;
}

.btn-cta-white {
    display: inline-block;
    padding: 1rem 3rem;
    background: var(--white);
    color: var(--primary-orange);
    text-decoration: none;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1.1rem;
    transition: var(--transition);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.btn-cta-white:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 25px rgba(0, 0, 0, 0.3);
    background: #f9f9f9;
}

/* ========== BOTÓN CTA INLINE RECAMBIOS ========== */
.service-cta-inline {
    margin-top: 2rem;
}

.btn-service-cta {
    display: inline-block;
    padding: 0.85rem 2rem;
    background: var(--primary-orange);
    color: var(--white);
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    font-size: 1rem;
    transition: var(--transition);
    box-shadow: 0 2px 10px rgba(237, 108, 2, 0.2);
}

.btn-service-cta:hover {
    background: #d97706;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(237, 108, 2, 0.3);
}

/* ========== FORMULARIO DE CITA TALLER ========== */
.cita-taller-section {
    background: #f8f9fa;
    padding: 5rem 0;
}

.cita-taller-section h2 {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 1rem;
}

.cita-subtitle {
    text-align: center;
    font-size: 1.1rem;
    color: var(--gray);
    margin-bottom: 3rem;
}

.cita-form {
    max-width: 700px;
    margin: 0 auto;
    background: var(--white);
    padding: 3rem;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    font-weight: 600;
    color: var(--dark);
    margin-bottom: 0.5rem;
    font-size: 0.95rem;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 0.9rem;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    font-size: 1rem;
    font-family: inherit;
    transition: var(--transition);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--secondary-blue);
    box-shadow: 0 0 0 3px rgba(44, 95, 124, 0.1);
}

.form-group textarea {
    resize: vertical;
    min-height: 100px;
}

.btn-cita-submit {
    width: 100%;
    padding: 1rem;
    background: var(--primary-orange);
    color: var(--white);
    border: none;
    border-radius: 8px;
    font-size: 1.1rem;
    font-weight: 700;
    cursor: pointer;
    transition: var(--transition);
    margin-top: 1rem;
}

.btn-cita-submit:hover {
    background: #d97706;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(237, 108, 2, 0.3);
}

@media (max-width: 768px) {
    .cita-form {
        padding: 2rem 1.5rem;
    }

    .cita-taller-section h2 {
        font-size: 2rem;
    }
}