/*
Theme Name: Tapizauto Sport
Theme URI: https://www.technoimpolso.es
Author: Technoimpulso
Author URI: https://www.technoimpolso.es
Description: Tema a medida para Tapizauto Sport - Tapicería de alta calidad para coches y motos.
Version: 1.1
Requires at least: 5.0
Requires PHP: 7.4
Text Domain: tapizauto-sport
*/
/* Reset y Variables */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #ff6a00;
    --primary-dark: #cc5500;
    --secondary-color: #1db854;
    --dark-bg: #1a1a1a;
    --light-text: #ffffff;
    --gray-text: #b0b0b0;
    --border-color: #333333;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: var(--gray-text);
    background-color: #0d0d0d;
}

html {
    scroll-behavior: smooth;
}

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

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

/* HEADER - Negro fijo */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background-color: #000000;
    border-bottom: 3px solid var(--primary-color);
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

.header-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 15px 0;
}

.logo-container {
    flex: 0 0 auto;
}

.logo {
    height: 50px;
    max-width: 200px;
    object-fit: contain;
}

.nav ul {
    display: flex;
    list-style: none;
    gap: 40px;
}

.nav a {
    color: var(--light-text);
    font-weight: 600;
    transition: color 0.3s ease;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

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

.header-info {
    text-align: right;
}

.nav-toggle {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    width: 32px;
    height: 32px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 1001;
}

.nav-toggle span {
    display: block;
    width: 100%;
    height: 3px;
    background-color: var(--light-text);
    border-radius: 3px;
    transition: all 0.3s ease;
}

.nav-toggle.active span:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
}

.nav-toggle.active span:nth-child(2) {
    opacity: 0;
}

.nav-toggle.active span:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
}

.phone {
    color: var(--light-text);
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 700;
    font-size: 16px;
}

.phone a {
    color: var(--primary-color);
    transition: color 0.3s ease;
}

.phone a:hover {
    color: var(--light-text);
}

/* HERO - Imagen fija */
.hero {
    position: relative;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    margin-top: 80px;
}

/* Tira de frases en movimiento, justo debajo del menú */
.hero-ticker {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    background-color: #0d0d0d;
    border-bottom: 1px solid var(--border-color);
    overflow: hidden;
    z-index: 15;
    padding: 14px 0;
}

.hero-ticker-track {
    display: flex;
    gap: 12px;
    white-space: nowrap;
    width: max-content;
    animation: tickerScroll 22s linear infinite;
    color: var(--light-text);
    font-weight: 700;
    font-size: 0.95rem;
    letter-spacing: 0.5px;
}

.hero-ticker-track span:nth-child(even) {
    color: var(--secondary-color);
}

@keyframes tickerScroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.75) 0%, rgba(0, 0, 0, 0.45) 40%, rgba(0, 0, 0, 0.75) 100%);
}

.hero-content {
    position: relative;
    z-index: 10;
    text-align: center;
    color: white;
    max-width: 800px;
    padding: 90px 40px 40px;
}

.hero-content h1 {
    font-size: 3.5rem;
    font-weight: 900;
    margin-bottom: 30px;
    line-height: 1.15;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.8);
}

.hero-content h1 .line-red,
.hero-content h1 .line-white {
    display: block;
}

.hero-content h1 .line-red {
    color: var(--primary-color);
}

.hero-content h1 .line-white {
    color: #ffffff;
}

.hero-content h1 .highlight {
    background: linear-gradient(90deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: var(--primary-color);
}

.hero-content h1 .highlight-white {
    color: #ffffff;
}

.hero-content p {
    font-size: 1.2rem;
    margin-bottom: 25px;
    line-height: 1.8;
    text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.8);
}

.hero-divider {
    width: 100%;
    max-width: 700px;
    height: 3px;
    background-color: var(--secondary-color);
    margin: 0 auto 35px;
}

.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

/* Botones */
.btn {
    padding: 15px 40px;
    border: 2px solid var(--primary-color);
    border-radius: 4px;
    background-color: transparent;
    color: var(--light-text);
    font-weight: 700;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.btn-hero {
    border-color: var(--primary-color);
    color: var(--light-text);
    background-color: transparent;
}

.btn-hero:hover {
    background-color: var(--primary-color);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(255, 106, 0, 0.3);
}

.btn-primary {
    border-color: var(--primary-color);
    background-color: transparent;
    color: var(--light-text);
}

.btn-primary:hover {
    background-color: var(--primary-color);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(255, 106, 0, 0.3);
}

.btn-secondary {
    background-color: transparent;
    color: var(--light-text);
    border: 2px solid var(--secondary-color);
}

.btn-secondary:hover {
    background-color: var(--secondary-color);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(29, 184, 84, 0.3);
}

.btn-small {
    padding: 10px 20px;
    font-size: 12px;
}

/* BRANDS BANNER - Carrusel en movimiento */
.brands-banner {
    background-color: #000000;
    padding: 30px 0;
    overflow: hidden;
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
}

.brands-carousel {
    display: flex;
    gap: 50px;
    animation: scroll 20s linear infinite;
    padding: 0 20px;
}

.brand-item {
    flex: 0 0 auto;
    color: var(--light-text);
    font-weight: 900;
    font-size: 1.5rem;
    opacity: 0.6;
    text-transform: uppercase;
    letter-spacing: 2px;
    transition: opacity 0.3s ease;
}

.brand-item:hover {
    opacity: 1;
    color: var(--primary-color);
}

@keyframes scroll {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

/* ABOUT */
.about {
    padding: 100px 0;
    background-color: #0d0d0d;
}

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

.about-text h2 {
    font-size: 3rem;
    margin-bottom: 10px;
    font-weight: 900;
    color: var(--light-text);
}

.about-text h2 .highlight {
    background: linear-gradient(90deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: var(--primary-color);
}

.about-text .subtitle {
    color: var(--primary-color);
    font-weight: 700;
    font-size: 1.2rem;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.about-text p {
    font-size: 1.1rem;
    margin-bottom: 30px;
    line-height: 1.8;
    color: var(--gray-text);
}

.stats {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 30px;
    margin-top: 40px;
}

.stat {
    text-align: center;
    padding: 20px;
    background-color: #161616;
    border-radius: 10px;
    border-left: 4px solid var(--primary-color);
}

.stat h3 {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 5px;
}

.stat .stars {
    color: #f5b301;
    font-size: 1rem;
    margin-bottom: 8px;
}

.stat .stars i {
    margin: 0 1px;
}

.stat p {
    font-size: 0.9rem;
    color: var(--gray-text);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.responsive-img {
    width: 100%;
    height: auto;
    border-radius: 10px;
}

/* SERVICIOS */
.services {
    padding: 100px 0;
    background-color: #111111;
}

.services h2,
.process h2,
.gallery h2,
.specialties h2,
.contact h2 {
    position: relative;
    padding-bottom: 20px;
}

.services h2::after,
.process h2::after,
.gallery h2::after,
.specialties h2::after,
.contact h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 90px;
    height: 4px;
    border-radius: 4px;
    background: linear-gradient(90deg, var(--primary-color) 0%, var(--secondary-color) 100%);
}

.services h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 60px;
    font-weight: 900;
    color: var(--light-text);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.service-card {
    background-color: #1a1a1a;
    padding: 40px;
    border-radius: 10px;
    text-align: center;
    transition: all 0.3s ease;
    border-top: 4px solid var(--primary-color);
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4);
}

.service-card i {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.service-card h3 {
    font-size: 1.3rem;
    margin-bottom: 15px;
    color: var(--light-text);
}

.service-card p {
    color: var(--gray-text);
    line-height: 1.6;
}

/* PROCESO */
.process {
    padding: 100px 0;
    background-color: #0d0d0d;
}

.process h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 60px;
    font-weight: 900;
    color: var(--light-text);
}

.process-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
}

.step {
    text-align: center;
    position: relative;
    padding: 30px;
}

.step-number {
    font-size: 3rem;
    font-weight: 900;
    color: var(--primary-color);
    margin-bottom: 20px;
    display: block;
}

.step h3 {
    font-size: 1.3rem;
    margin-bottom: 15px;
    color: var(--light-text);
}

.step p {
    color: var(--gray-text);
    line-height: 1.6;
}

/* GALERÍA */
.gallery {
    padding: 100px 0;
    background-color: #111111;
}

.gallery h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 20px;
    font-weight: 900;
    color: var(--light-text);
}

.gallery-subtitle {
    text-align: center;
    color: var(--gray-text);
    font-size: 1.1rem;
    margin-bottom: 40px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.gallery-filters {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 50px;
    flex-wrap: wrap;
}

.filter-btn {
    padding: 12px 30px;
    border: 2px solid var(--primary-color);
    background-color: transparent;
    color: var(--primary-color);
    border-radius: 4px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.filter-btn:hover,
.filter-btn.active {
    background-color: var(--primary-color);
    color: white;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 40px;
    align-items: start;
}

.gallery-item.gallery-solo {
    grid-column: 1 / -1;
    max-width: 380px;
    margin: 0 auto;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 10px;
    cursor: pointer;
    height: auto;
    display: none;
    flex-direction: column;
    background-color: var(--dark-bg);
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.12);
}

.gallery-item.active {
    display: flex;
}

.gallery-item .gallery-img-wrap {
    height: 260px;
    overflow: hidden;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
    display: block;
}

.gallery-item:hover img {
    transform: scale(1.08);
}

.gallery-overlay {
    position: static;
    background-color: var(--dark-bg);
    color: var(--light-text);
    padding: 16px 18px;
    text-align: left;
    border-top: 3px solid var(--primary-color);
}

.gallery-item:nth-child(3n+2) .gallery-overlay {
    border-top-color: var(--secondary-color);
}

.gallery-overlay p {
    font-weight: 600;
    font-size: 0.92rem;
    line-height: 1.4;
    margin: 0;
    color: var(--gray-text);
}

.gallery-hint {
    text-align: center;
    color: var(--primary-color);
    font-weight: 700;
    margin-bottom: 20px;
}

/* MODAL IMAGEN */
.modal {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.9);
    animation: fadeIn 0.3s ease;
}

.modal.active {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.modal-content {
    max-width: 90%;
    max-height: 85vh;
    object-fit: contain;
    border-radius: 10px;
    margin-bottom: 20px;
}

.modal-caption {
    color: white;
    text-align: center;
    font-size: 1.2rem;
    font-weight: 700;
}

.close {
    position: absolute;
    top: 20px;
    right: 40px;
    font-size: 3rem;
    font-weight: bold;
    color: white;
    cursor: pointer;
    transition: color 0.3s ease;
}

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

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

/* ESPECIALIDADES */
.specialties {
    padding: 100px 0;
    background-color: #0d0d0d;
}

.specialties h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 60px;
    font-weight: 900;
    color: var(--light-text);
}

.specialty-items {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

.specialty-tags {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-top: 40px;
}

.tag-card {
    background-color: var(--dark-bg);
    border-radius: 14px;
    padding: 30px 20px;
    text-align: center;
    border-top: 4px solid var(--primary-color);
    transition: all 0.3s ease;
}

.tag-card:nth-child(3n+2) {
    border-top-color: var(--secondary-color);
}

.tag-card:nth-child(3n) {
    border-top-color: var(--primary-color);
}

.tag-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.4);
}

.tag-card i {
    font-size: 2.2rem;
    margin-bottom: 15px;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: var(--primary-color);
}

.tag-card h4 {
    color: var(--light-text);
    font-size: 1.15rem;
    margin-bottom: 10px;
}

.tag-card p {
    color: var(--gray-text);
    font-size: 0.9rem;
    line-height: 1.5;
}

.specialty {
    padding: 30px;
    background-color: #161616;
    border-radius: 10px;
    border-left: 4px solid var(--primary-color);
}

.specialty h3 {
    color: var(--light-text);
    font-size: 1.3rem;
    margin-bottom: 15px;
}

.specialty p {
    color: var(--gray-text);
    line-height: 1.6;
}

/* CALIDAD */
.quality {
    padding: 100px 0;
    background-color: #111111;
}

.quality h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 10px;
    font-weight: 900;
    color: var(--light-text);
}

.quality h3 {
    text-align: center;
    font-size: 1.8rem;
    margin-bottom: 50px;
    color: var(--light-text);
}

.quality h3 .highlight {
    color: var(--secondary-color);
}

.quality-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    max-width: 600px;
    margin: 0 auto;
}

.quality-item {
    text-align: center;
    padding: 30px;
    background-color: #1a1a1a;
    border-radius: 10px;
}

.quality-item i {
    font-size: 3rem;
    color: var(--secondary-color);
    margin-bottom: 20px;
}

.quality-item p {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--light-text);
}

.quality-item .highlight {
    color: var(--secondary-color);
}

/* CONTACTO */
.contact {
    padding: 100px 0;
    background-color: #0d0d0d;
}

.contact h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 60px;
    font-weight: 900;
    color: var(--light-text);
}

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

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.contact-item {
    display: flex;
    gap: 20px;
    padding: 20px;
    background-color: #161616;
    border-radius: 10px;
    border-left: 4px solid var(--primary-color);
}

.contact-item i {
    font-size: 2rem;
    color: var(--primary-color);
    flex: 0 0 auto;
}

.contact-item h3 {
    font-size: 1.1rem;
    margin-bottom: 5px;
    color: var(--light-text);
}

.contact-item p {
    color: var(--gray-text);
    margin: 5px 0;
}

.contact-item a {
    color: var(--primary-color);
    font-weight: 700;
    transition: color 0.3s ease;
}

.contact-item a:hover {
    color: var(--primary-dark);
}

.map-container {
    grid-column: 1 / -1;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.contact-form {
    grid-column: 1 / -1;
    background-color: #161616;
    padding: 40px;
    border-radius: 10px;
}

.contact-form h3 {
    font-size: 1.5rem;
    margin-bottom: 30px;
    color: var(--light-text);
}

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

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 15px;
    border: 1px solid var(--border-color);
    border-radius: 5px;
    font-family: inherit;
    font-size: 1rem;
    transition: border-color 0.3s ease;
    background-color: #0d0d0d;
    color: var(--light-text);
}

.form-group select option {
    background-color: #0d0d0d;
    color: var(--light-text);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: #777;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(29, 184, 84, 0.1);
}

.form-group textarea {
    resize: vertical;
}

/* FOOTER - Negro */
.footer {
    background-color: #000000;
    color: var(--light-text);
    padding: 60px 0 20px;
    border-top: 3px solid var(--primary-color);
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-section h4 {
    font-size: 1.2rem;
    margin-bottom: 20px;
    color: var(--primary-color);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.footer-section p {
    color: var(--gray-text);
    line-height: 1.8;
    margin-bottom: 10px;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 10px;
}

.footer-section a {
    color: var(--gray-text);
    transition: color 0.3s ease;
}

.footer-section a:hover {
    color: var(--primary-color);
}

.social-links {
    display: flex;
    gap: 15px;
}

.social-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: var(--primary-color);
    transition: all 0.3s ease;
}

.social-icon:hover {
    background-color: var(--primary-color);
    color: white;
    transform: translateY(-3px);
}

.footer-bottom {
    border-top: 1px solid var(--border-color);
    padding-top: 20px;
    text-align: center;
    color: var(--gray-text);
    font-size: 0.9rem;
}

.footer-bottom p {
    margin-bottom: 5px;
}

.footer-bottom a {
    color: var(--primary-color);
    transition: color 0.3s ease;
}

.footer-bottom a:hover {
    color: white;
}

/* WHATSAPP FLOTANTE */
.whatsapp-btn {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background-color: #25d366;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    transition: all 0.3s ease;
    z-index: 999;
    box-shadow: 0 5px 20px rgba(37, 211, 102, 0.4);
}

.whatsapp-btn:hover {
    background-color: #20ba5a;
    transform: scale(1.1);
    box-shadow: 0 8px 30px rgba(37, 211, 102, 0.6);
}

/* RESPONSIVE - Tablets y móviles grandes */
@media (max-width: 900px) {
    .header-content {
        flex-wrap: nowrap;
        padding: 12px 0;
    }

    .header-info {
        display: none;
    }

    .nav-toggle {
        display: flex;
    }

    .nav {
        position: fixed;
        top: 0;
        right: 0;
        width: 75%;
        max-width: 320px;
        height: 100vh;
        background-color: #0d0d0d;
        padding: 100px 30px 30px;
        transform: translateX(100%);
        transition: transform 0.3s ease;
        box-shadow: -5px 0 20px rgba(0, 0, 0, 0.5);
        z-index: 1000;
        overflow-y: auto;
    }

    .nav.nav-open {
        transform: translateX(0);
    }

    .nav ul {
        flex-direction: column;
        gap: 25px;
        align-items: flex-start;
    }

    .nav a {
        font-size: 16px;
    }

    .logo {
        height: 40px;
    }

    .hero {
        margin-top: 64px;
        height: 90vh;
    }

    .hero-ticker {
        padding: 10px 0;
    }

    .hero-ticker-track {
        font-size: 0.8rem;
        gap: 8px;
    }

    .hero-content {
        padding: 70px 20px 30px;
    }

    .hero-content h1 {
        font-size: 2.1rem;
        margin-bottom: 20px;
    }

    .hero-divider {
        margin-bottom: 25px;
    }

    .hero-content p {
        font-size: 1rem;
        margin-bottom: 25px;
    }

    .btn {
        padding: 13px 28px;
        font-size: 14px;
    }

    .about, .services, .process, .gallery, .specialties, .quality, .contact {
        padding: 60px 0;
    }

    .about-text h2,
    .services h2,
    .process h2,
    .gallery h2,
    .specialties h2,
    .quality h2,
    .contact h2 {
        font-size: 1.9rem;
        margin-bottom: 35px;
    }

    .about-text .subtitle {
        font-size: 1rem;
    }

    .about-text p {
        font-size: 1rem;
    }

    .quality h3 {
        font-size: 1.3rem;
        margin-bottom: 30px;
    }

    .gallery-subtitle {
        font-size: 1rem;
        padding: 0 10px;
    }

    .gallery-filters {
        gap: 10px;
    }

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

    .gallery-item.gallery-solo {
        grid-column: 1 / -1;
        max-width: 340px;
    }

    .filter-btn {
        padding: 10px 20px;
        font-size: 0.85rem;
    }

    .stat h3 {
        font-size: 2rem;
    }

    .service-card,
    .quality-item {
        padding: 25px 20px;
    }

    .service-card i,
    .quality-item i {
        font-size: 2.2rem;
    }

    .tag-card {
        padding: 25px 15px;
    }

    .contact-form {
        padding: 25px 20px;
    }

    .whatsapp-btn {
        bottom: 20px;
        right: 20px;
        width: 55px;
        height: 55px;
        font-size: 1.6rem;
    }
}

/* RESPONSIVE */
@media (max-width: 768px) {
    .header-content {
        flex-direction: row;
        gap: 15px;
    }

    .hero-content h1 {
        font-size: 2rem;
    }

    .hero-content p {
        font-size: 1rem;
    }

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

    .about-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }

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

    .specialty-items {
        grid-template-columns: 1fr;
    }

    .specialty-tags {
        grid-template-columns: 1fr;
    }

    .quality-features {
        grid-template-columns: 1fr;
    }

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

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

    .footer {
        padding: 40px 0 15px;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 25px;
        margin-bottom: 25px;
        text-align: center;
    }

    .footer-section h4 {
        font-size: 1.05rem;
        margin-bottom: 12px;
    }

    .footer-section p {
        font-size: 0.9rem;
        margin-bottom: 6px;
        line-height: 1.5;
    }

    .footer-section ul li {
        margin-bottom: 6px;
    }

    .footer-bottom {
        padding-top: 15px;
        font-size: 0.8rem;
    }

    .footer-bottom p {
        margin-bottom: 4px;
    }

    .social-links {
        justify-content: center;
    }

    .whatsapp-btn {
        bottom: 20px;
        right: 20px;
        width: 50px;
        height: 50px;
        font-size: 1.5rem;
    }
}

/* RESPONSIVE - Móviles pequeños */
@media (max-width: 480px) {
    .container {
        padding: 0 16px;
    }

    .logo {
        height: 34px;
    }

    .hero {
        margin-top: 58px;
        height: 85vh;
    }

    .hero-content {
        padding: 20px 15px;
    }

    .hero-content h1 {
        font-size: 1.6rem;
        line-height: 1.3;
        margin-bottom: 15px;
    }

    .hero-ticker-track {
        font-size: 0.7rem;
    }

    .hero-content {
        padding: 60px 15px 20px;
    }

    .hero-content p {
        font-size: 0.95rem;
        margin-bottom: 20px;
    }

    .btn {
        width: 100%;
        justify-content: center;
        padding: 14px 20px;
        font-size: 13px;
    }

    .about, .services, .process, .gallery, .specialties, .quality, .contact {
        padding: 45px 0;
    }

    .about-text h2,
    .services h2,
    .process h2,
    .gallery h2,
    .specialties h2,
    .quality h2,
    .contact h2 {
        font-size: 1.5rem;
        margin-bottom: 25px;
    }

    .brand-item {
        font-size: 1.1rem;
    }

    .step-number {
        font-size: 2.2rem;
    }

    .gallery-item .gallery-img-wrap {
        height: 200px;
    }

    .tag-card i {
        font-size: 1.8rem;
    }

    .tag-card h4 {
        font-size: 1.05rem;
    }

    .contact-item {
        flex-direction: column;
        gap: 10px;
    }

    .close {
        top: 10px;
        right: 20px;
        font-size: 2.2rem;
    }
}

