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

:root {
    --color-primary: #8B4513;
    --color-secondary: #D2691E;
    --color-accent: #CD853F;
    --color-dark: #2c2c2c;
    --color-light: #f8f8f8;
    --color-white: #ffffff;
    --shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    --shadow-large: 0 10px 30px rgba(0, 0, 0, 0.2);
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: var(--color-dark);
    overflow-x: hidden;
}

html {
    scroll-behavior: smooth;
}

/* WhatsApp Flotante */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background: #25D366;
    color: white;
    padding: 15px 25px;
    border-radius: 50px;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 12px;
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.4);
    z-index: 1000;
    transition: all 0.3s ease;
    font-weight: 600;
    font-size: 16px;
}

.whatsapp-float:hover {
    background: #128C7E;
    transform: translateY(-5px);
    box-shadow: 0 12px 35px rgba(37, 211, 102, 0.6);
}

.whatsapp-icon {
    font-size: 28px;
    line-height: 1;
}

.whatsapp-text {
    font-weight: 700;
    letter-spacing: 0.5px;
}

/* Hero Section */
.hero {
    position: relative;
    height: 100vh;
    min-height: 600px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.hero-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.6));
    z-index: 2;
}

.logo-container {
    position: absolute;
    top: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 4;
}

.logo {
    height: 100px;
    width: auto;
    filter: drop-shadow(0 4px 6px rgba(0, 0, 0, 0.3));
}

/* Logo arriba a la izquierda para index */
.logo-container-left {
    position: absolute;
    top: 20px;
    left: 30px;
    z-index: 4;
}

.logo-left {
    height: 80px;
    width: auto;
    filter: drop-shadow(0 4px 6px rgba(0, 0, 0, 0.3));
}

/* Navegación */
.main-nav {
    position: absolute;
    top: 30px;
    right: 30px;
    z-index: 4;
}

.main-nav ul {
    display: flex;
    gap: 20px;
    list-style: none;
    flex-direction: row;
}

.main-nav a {
    color: var(--color-white);
    text-decoration: none;
    font-size: 16px;
    font-weight: 600;
    padding: 8px 18px;
    border-radius: 50px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
    border: 2px solid rgba(255, 255, 255, 0.3);
    white-space: nowrap;
}

.main-nav a:hover,
.main-nav a.active {
    background: var(--color-primary);
    border-color: var(--color-primary);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(139, 69, 19, 0.4);
}

/* Hero Content */
.hero-content {
    position: relative;
    z-index: 3;
    text-align: center;
    color: var(--color-white);
    max-width: 900px;
    padding: 0 20px;
    margin-top: 0;
}

.hero-content h1 {
    font-size: 56px;
    font-weight: 700;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    line-height: 1.2;
}

.hero-content p {
    font-size: 24px;
    margin-bottom: 30px;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

.cta-button {
    display: inline-block;
    padding: 18px 45px;
    background: var(--color-primary);
    color: var(--color-white);
    text-decoration: none;
    font-size: 20px;
    font-weight: 600;
    border-radius: 50px;
    transition: all 0.3s ease;
    box-shadow: var(--shadow-large);
}

.cta-button:hover {
    background: var(--color-secondary);
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(139, 69, 19, 0.4);
}

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

/* Contenido Principal */
.contenido-principal {
    padding: 80px 0;
    background: var(--color-white);
}

.contenido-principal .container {
    max-width: 900px;
}

.contenido-principal h2 {
    font-size: 36px;
    color: var(--color-primary);
    margin-bottom: 30px;
    text-align: center;
}

.contenido-principal h3 {
    font-size: 24px;
    color: var(--color-primary);
    margin-top: 40px;
    margin-bottom: 20px;
}

.contenido-principal p {
    font-size: 18px;
    line-height: 1.8;
    color: #333;
    margin-bottom: 20px;
}

.lista-ventajas {
    list-style: none;
    margin: 30px 0;
    padding: 0;
}

.lista-ventajas li {
    font-size: 18px;
    line-height: 1.8;
    color: #333;
    margin-bottom: 15px;
    padding-left: 30px;
    position: relative;
}

.lista-ventajas li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--color-primary);
    font-weight: bold;
    font-size: 20px;
}

.texto-final {
    font-size: 20px;
    text-align: center;
    margin-top: 40px;
    color: var(--color-primary);
}

/* Trabajos Section */
.trabajos-section {
    padding: 80px 0;
    background: var(--color-light);
}

.trabajos-section h2 {
    font-size: 36px;
    color: var(--color-primary);
    text-align: center;
    margin-bottom: 20px;
}

.trabajos-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin-top: 40px;
}

.trabajo-item {
    background: var(--color-white);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
}

.trabajo-item:hover {
    transform: scale(1.05);
    box-shadow: var(--shadow-large);
}

.trabajo-item img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    display: block;
}

/* Experiencia Section */
.experiencia-section {
    padding: 80px 0;
    background: var(--color-white);
}

.experiencia-texto {
    text-align: center;
    max-width: 900px;
    margin: 0 auto 50px;
}

.experiencia-texto p {
    font-size: 20px;
    line-height: 1.8;
    color: #333;
}

.experiencia-imagen-single {
    max-width: 700px;
    margin: 40px auto 0;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: var(--shadow-large);
    transition: all 0.3s ease;
}

.experiencia-imagen-single:hover {
    transform: scale(1.02);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.25);
}

.experiencia-imagen-single img {
    width: 100%;
    height: 450px;
    object-fit: cover;
    display: block;
}

/* Experiencia Section Alt */
.experiencia-section-alt {
    padding: 80px 0;
    background: var(--color-light);
}

.experiencia-section-alt .experiencia-texto {
    text-align: center;
    max-width: 900px;
    margin: 0 auto 50px;
}

.experiencia-section-alt .experiencia-texto p {
    font-size: 20px;
    line-height: 1.8;
    color: #333;
}

/* Resultados Section */
.resultados-section {
    padding: 80px 0;
    background: var(--color-white);
}

.resultados-section h2 {
    font-size: 36px;
    color: var(--color-primary);
    text-align: center;
    margin-bottom: 50px;
}

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

.resultado-item {
    border-radius: 15px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
}

.resultado-item:hover {
    transform: scale(1.05);
    box-shadow: var(--shadow-large);
}

.resultado-item img {
    width: 100%;
    height: 350px;
    object-fit: cover;
    display: block;
}

/* Por Qué Section */
.porque-section {
    padding: 80px 0;
    background: var(--color-light);
}

.porque-section h2 {
    font-size: 36px;
    color: var(--color-primary);
    text-align: center;
    margin-bottom: 30px;
    line-height: 1.4;
}

.intro-porque {
    font-size: 20px;
    line-height: 1.8;
    color: #333;
    text-align: center;
    max-width: 900px;
    margin: 0 auto 60px;
}

.porque-section h3 {
    font-size: 28px;
    color: var(--color-primary);
    text-align: center;
    margin-bottom: 50px;
}

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

.proceso-item {
    background: var(--color-white);
    padding: 40px 30px;
    border-radius: 15px;
    box-shadow: var(--shadow);
    text-align: center;
    transition: all 0.3s ease;
}

.proceso-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-large);
}

.proceso-numero {
    width: 70px;
    height: 70px;
    background: var(--color-primary);
    color: var(--color-white);
    font-size: 36px;
    font-weight: bold;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
}

.proceso-item p {
    font-size: 17px;
    line-height: 1.7;
    color: #333;
}

/* Barniz Section */
.barniz-section {
    padding: 80px 0;
    background: var(--color-white);
}

.barniz-section h2 {
    font-size: 36px;
    color: var(--color-primary);
    text-align: center;
    margin-bottom: 40px;
}

.barniz-contenido {
    max-width: 900px;
    margin: 0 auto;
}

.barniz-contenido p {
    font-size: 18px;
    line-height: 1.8;
    color: #333;
    margin-bottom: 30px;
}

.barniz-destacado {
    background: linear-gradient(135deg, #e8f5e9, #c8e6c9);
    padding: 40px;
    border-radius: 15px;
    border-left: 5px solid #4CAF50;
    box-shadow: var(--shadow);
    margin: 40px 0;
}

.barniz-destacado h3 {
    font-size: 28px;
    color: #2e7d32;
    margin-bottom: 20px;
}

.barniz-destacado p {
    font-size: 18px;
    line-height: 1.8;
    color: #1b5e20;
    margin-bottom: 0;
}

.barniz-legal {
    font-size: 16px;
    color: #666;
    font-style: italic;
    text-align: center;
    margin-top: 30px;
}

/* Precios Section */
.precios-section {
    padding: 80px 0;
    background: var(--color-light);
}

.precios-section h2 {
    font-size: 36px;
    color: var(--color-primary);
    text-align: center;
    margin-bottom: 40px;
}

.precios-contenido {
    max-width: 900px;
    margin: 0 auto;
}

.precios-contenido p {
    font-size: 18px;
    line-height: 1.8;
    color: #333;
    margin-bottom: 25px;
}

.precio-destacado {
    background: linear-gradient(135deg, #fff3e0, #ffe0b2);
    padding: 40px;
    border-radius: 15px;
    border-left: 5px solid #ff9800;
    box-shadow: var(--shadow-large);
    margin: 40px 0;
    text-align: center;
}

.precio-destacado h3 {
    font-size: 32px;
    color: #e65100;
    margin: 0;
    font-weight: bold;
}

/* FAQ Section */
.faq-section {
    padding: 80px 0;
    background: var(--color-white);
}

.faq-contenido {
    max-width: 900px;
    margin: 0 auto 60px;
}

.faq-item {
    background: var(--color-light);
    padding: 35px 40px;
    border-radius: 15px;
    margin-bottom: 25px;
    border-left: 5px solid var(--color-primary);
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
}

.faq-item:hover {
    transform: translateX(5px);
    box-shadow: var(--shadow-large);
}

.faq-item h3 {
    font-size: 24px;
    color: var(--color-primary);
    margin-bottom: 15px;
}

.faq-item p {
    font-size: 18px;
    line-height: 1.8;
    color: #333;
    margin: 0;
}

.cta-presupuesto {
    background: linear-gradient(135deg, var(--color-primary), var(--color-secondary));
    padding: 60px 40px;
    border-radius: 20px;
    text-align: center;
    box-shadow: var(--shadow-large);
}

.cta-presupuesto h2 {
    font-size: 36px;
    color: var(--color-white);
    margin-bottom: 30px;
    line-height: 1.4;
}

.btn-presupuesto {
    display: inline-block;
    padding: 20px 50px;
    background: var(--color-white);
    color: var(--color-primary);
    text-decoration: none;
    font-size: 22px;
    font-weight: 700;
    border-radius: 50px;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.btn-presupuesto:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4);
}

/* Sobre Nosotros Section */
.sobre-nosotros-section {
    padding: 80px 0;
    background: var(--color-light);
}

.sobre-nosotros-section h2 {
    font-size: 36px;
    color: var(--color-primary);
    text-align: center;
    margin-bottom: 40px;
}

.sobre-contenido {
    max-width: 900px;
    margin: 0 auto;
    background: var(--color-white);
    padding: 50px;
    border-radius: 20px;
    box-shadow: var(--shadow-large);
}

.sobre-contenido p {
    font-size: 19px;
    line-height: 1.8;
    color: #333;
    margin-bottom: 25px;
}

.hablamos {
    text-align: center;
    font-size: 24px;
    color: var(--color-primary);
    margin-top: 40px;
    margin-bottom: 0;
}

/* Contacto Section */
.contacto-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #f5f5f5, #e8e8e8);
}

.contacto-section h2 {
    font-size: 42px;
    color: var(--color-primary);
    text-align: center;
    margin-bottom: 15px;
}

.contacto-subtitle {
    text-align: center;
    font-size: 20px;
    color: #666;
    margin-bottom: 50px;
}

.contacto-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 60px;
}

.contacto-card-main {
    background: var(--color-white);
    padding: 45px 35px;
    border-radius: 20px;
    text-align: center;
    box-shadow: var(--shadow-large);
    transition: all 0.3s ease;
    border-top: 5px solid var(--color-primary);
}

.contacto-card-main:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.2);
}

.contacto-icon-main {
    font-size: 60px;
    margin-bottom: 20px;
}

.contacto-card-main h3 {
    font-size: 24px;
    color: var(--color-primary);
    margin-bottom: 20px;
}

.contacto-link-phone {
    display: block;
    font-size: 32px;
    font-weight: bold;
    color: var(--color-primary);
    text-decoration: none;
    margin: 20px 0;
    transition: color 0.3s ease;
}

.contacto-link-phone:hover {
    color: var(--color-secondary);
}

.contacto-link-email {
    display: block;
    font-size: 20px;
    color: var(--color-primary);
    text-decoration: none;
    margin: 20px 0;
    word-break: break-word;
    transition: color 0.3s ease;
}

.contacto-link-email:hover {
    color: var(--color-secondary);
}

.contacto-direccion {
    font-size: 20px;
    font-weight: 600;
    color: #333;
    margin: 20px 0;
    line-height: 1.6;
}

.contacto-zona {
    font-size: 16px;
    color: #666;
    font-style: italic;
}

.contacto-card-main p {
    font-size: 16px;
    color: #666;
    margin: 10px 0;
}

.btn-whatsapp {
    display: inline-block;
    margin-top: 20px;
    padding: 12px 30px;
    background: #25D366;
    color: white;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(37, 211, 102, 0.3);
}

.btn-whatsapp:hover {
    background: #128C7E;
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(37, 211, 102, 0.4);
}

.contacto-cta {
    text-align: center;
    background: var(--color-white);
    padding: 40px;
    border-radius: 20px;
    box-shadow: var(--shadow);
}

.contacto-cta p {
    font-size: 24px;
    color: var(--color-primary);
    margin-bottom: 25px;
    font-weight: 600;
}

.btn-contacto-page {
    display: inline-block;
    padding: 18px 45px;
    background: var(--color-primary);
    color: white;
    text-decoration: none;
    border-radius: 50px;
    font-size: 20px;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: var(--shadow);
}

.btn-contacto-page:hover {
    background: var(--color-secondary);
    transform: translateY(-3px);
    box-shadow: var(--shadow-large);
}

/* Secciones */
section {
    padding: 80px 0;
}

section h2 {
    font-size: 42px;
    text-align: center;
    margin-bottom: 20px;
    color: var(--color-primary);
}

.subtitle {
    text-align: center;
    font-size: 20px;
    color: #666;
    margin-bottom: 50px;
}

/* Ciudades Section */
.ciudades-section {
    background: var(--color-light);
}

.ciudades-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.ciudad-card {
    background: var(--color-white);
    padding: 40px 30px;
    border-radius: 15px;
    text-align: center;
    text-decoration: none;
    color: var(--color-dark);
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
    border: 3px solid transparent;
}

.ciudad-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-large);
    border-color: var(--color-primary);
}

.ciudad-card h3 {
    font-size: 26px;
    color: var(--color-primary);
    margin-bottom: 15px;
}

.ciudad-card p {
    font-size: 16px;
    color: #666;
}

/* Servicios Section */
.servicios-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.servicio-card {
    background: var(--color-white);
    padding: 40px 30px;
    border-radius: 15px;
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
    border-left: 5px solid var(--color-primary);
}

.servicio-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-large);
}

.servicio-card h3 {
    font-size: 24px;
    margin-bottom: 15px;
    color: var(--color-primary);
}

/* Trabajos y Galería */
.trabajos-section {
    background: var(--color-light);
}

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

.galeria-item {
    background: var(--color-white);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
}

.galeria-item:hover {
    transform: scale(1.05);
    box-shadow: var(--shadow-large);
}

.galeria-item img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    display: block;
}

.galeria-item p {
    padding: 20px;
    font-size: 15px;
    line-height: 1.6;
}

/* Resultados Section */
.resultados-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.resultados-grid img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 15px;
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
}

.resultados-grid img:hover {
    transform: scale(1.05);
    box-shadow: var(--shadow-large);
}

/* Por Qué Section */
.porque-section {
    background: var(--color-light);
}

.intro-text {
    text-align: center;
    font-size: 20px;
    max-width: 900px;
    margin: 0 auto 50px;
    color: #555;
}

.porque-section h3 {
    text-align: center;
    font-size: 32px;
    color: var(--color-primary);
    margin: 60px 0 40px;
}

.proceso-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    margin-top: 40px;
}

.proceso-card {
    background: var(--color-white);
    padding: 40px 30px;
    border-radius: 15px;
    box-shadow: var(--shadow);
    text-align: center;
}

.numero {
    width: 60px;
    height: 60px;
    background: var(--color-primary);
    color: var(--color-white);
    font-size: 32px;
    font-weight: bold;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.proceso-card h4 {
    font-size: 22px;
    color: var(--color-primary);
    margin-bottom: 15px;
}

/* Video Section */
.video-section {
    padding: 80px 0;
    background: var(--color-dark);
    color: var(--color-white);
}

.video-section h2 {
    font-size: 42px;
    color: var(--color-white);
    text-align: center;
    margin-bottom: 15px;
}

.video-section .subtitle {
    color: rgba(255, 255, 255, 0.9);
}

.video-container {
    position: relative;
    max-width: 1000px;
    margin: 40px auto 0;
    padding-bottom: 56.25%; /* Aspect ratio 16:9 */
    height: 0;
    overflow: hidden;
    border-radius: 15px;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.5);
}

.video-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 15px;
}

.video-container video {
    width: 100%;
    display: block;
}

/* Barniz Section */
.barniz-section {
    background: var(--color-light);
}

.barniz-recomendacion {
    background: var(--color-white);
    padding: 40px;
    border-radius: 15px;
    box-shadow: var(--shadow);
    margin-top: 30px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    border-left: 5px solid #4CAF50;
}

.barniz-recomendacion h3 {
    color: #4CAF50;
    font-size: 28px;
    margin-bottom: 20px;
}

.barniz-recomendacion ul {
    list-style: none;
}

.barniz-recomendacion li {
    font-size: 18px;
    padding: 10px 0;
    color: #333;
}

/* Precios Section */
.precio-info {
    background: var(--color-white);
    padding: 30px;
    border-radius: 15px;
    box-shadow: var(--shadow);
    margin-top: 30px;
}

.precio-info h3 {
    color: var(--color-primary);
    font-size: 24px;
    margin-bottom: 15px;
}

/* CTA Final */
.cta-final {
    background: linear-gradient(135deg, var(--color-primary), var(--color-secondary));
    color: var(--color-white);
    text-align: center;
}

.cta-final h2 {
    color: var(--color-white);
    font-size: 48px;
}

.cta-final p {
    font-size: 22px;
    margin-bottom: 30px;
}

.cta-button-large {
    display: inline-block;
    padding: 20px 50px;
    background: var(--color-white);
    color: var(--color-primary);
    text-decoration: none;
    font-size: 24px;
    font-weight: 700;
    border-radius: 50px;
    transition: all 0.3s ease;
    box-shadow: var(--shadow-large);
}

.cta-button-large:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

/* Footer */
footer {
    background: var(--color-dark);
    color: var(--color-white);
    padding: 60px 0 20px;
}

.footer-buttons {
    display: flex;
    gap: 15px;
    margin-top: 20px;
    flex-wrap: wrap;
}

.footer-btn {
    display: inline-block;
    padding: 10px 20px;
    background: var(--color-primary);
    color: var(--color-white);
    text-decoration: none;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
    transition: all 0.3s ease;
}

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

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

.footer-section h4 {
    font-size: 20px;
    margin-bottom: 20px;
    color: var(--color-accent);
}

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

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

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

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

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

/* Contacto Específico */
.contacto-info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.contacto-card {
    background: var(--color-white);
    padding: 40px 30px;
    border-radius: 15px;
    text-align: center;
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
}

.contacto-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-large);
}

.contacto-icon {
    font-size: 60px;
    margin-bottom: 20px;
}

.contacto-card h3 {
    font-size: 24px;
    color: var(--color-primary);
    margin-bottom: 15px;
}

/* Formulario */
.formulario-container {
    max-width: 800px;
    margin: 40px auto 0;
    background: var(--color-white);
    padding: 50px;
    border-radius: 15px;
    box-shadow: var(--shadow-large);
}

.contacto-form {
    width: 100%;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

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

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: var(--color-dark);
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    font-size: 16px;
    font-family: inherit;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--color-primary);
}

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

.submit-button {
    width: 100%;
    padding: 18px 30px;
    background: var(--color-primary);
    color: var(--color-white);
    border: none;
    border-radius: 50px;
    font-size: 20px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: var(--shadow);
}

.submit-button:hover {
    background: var(--color-secondary);
    transform: translateY(-2px);
    box-shadow: var(--shadow-large);
}

/* FAQ */
.faq-container {
    max-width: 900px;
    margin: 40px auto 0;
}

.faq-item {
    background: var(--color-white);
    padding: 30px;
    border-radius: 15px;
    margin-bottom: 20px;
    box-shadow: var(--shadow);
    border-left: 5px solid var(--color-primary);
}

.faq-item h3 {
    color: var(--color-primary);
    font-size: 20px;
    margin-bottom: 15px;
}

.faq-item p {
    color: #555;
    line-height: 1.7;
}

/* Responsive */
@media (max-width: 768px) {
    .hero-content h1 {
        font-size: 36px;
    }
    
    .hero-content p {
        font-size: 18px;
    }
    
    .logo {
        height: 70px;
    }
    
    .logo-left {
        height: 60px;
    }
    
    .logo-container-left {
        top: 15px;
        left: 15px;
    }
    
    .main-nav ul {
        flex-direction: column;
        gap: 15px;
    }
    
    .main-nav {
        top: 15px;
        right: 15px;
    }
    
    .main-nav a {
        font-size: 14px;
        padding: 8px 15px;
    }
    
    .contenido-principal {
        padding: 50px 0;
    }
    
    .contenido-principal h2 {
        font-size: 28px;
    }
    
    .contenido-principal h3 {
        font-size: 20px;
    }
    
    .contenido-principal p,
    .lista-ventajas li {
        font-size: 16px;
    }
    
    .texto-final {
        font-size: 18px;
    }
    
    .trabajos-section {
        padding: 50px 0;
    }
    
    .trabajos-section h2 {
        font-size: 28px;
    }
    
    .trabajos-grid {
        grid-template-columns: 1fr;
    }
    
    .trabajo-item img {
        height: 300px;
    }
    
    .experiencia-section {
        padding: 50px 0;
    }
    
    .experiencia-texto {
        margin-bottom: 30px;
    }
    
    .experiencia-texto p {
        font-size: 17px;
        padding: 0 15px;
    }
    
    .experiencia-imagen-single {
        margin-top: 30px;
    }
    
    .experiencia-imagen-single img {
        height: 350px;
    }
    
    .experiencia-section-alt {
        padding: 50px 0;
    }
    
    .experiencia-section-alt .experiencia-texto p {
        font-size: 17px;
        padding: 0 15px;
    }
    
    .resultados-section {
        padding: 50px 0;
    }
    
    .resultados-section h2 {
        font-size: 28px;
        margin-bottom: 35px;
    }
    
    .resultados-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    
    .resultado-item img {
        height: 300px;
    }
    
    .porque-section {
        padding: 50px 0;
    }
    
    .porque-section h2 {
        font-size: 28px;
        padding: 0 15px;
    }
    
    .intro-porque {
        font-size: 18px;
        padding: 0 15px;
        margin-bottom: 40px;
    }
    
    .porque-section h3 {
        font-size: 24px;
        margin-bottom: 35px;
    }
    
    .proceso-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .proceso-item {
        padding: 35px 25px;
    }
    
    .proceso-numero {
        width: 60px;
        height: 60px;
        font-size: 32px;
        margin-bottom: 20px;
    }
    
    .proceso-item p {
        font-size: 16px;
    }
    
    .barniz-section {
        padding: 50px 0;
    }
    
    .barniz-section h2 {
        font-size: 28px;
        padding: 0 15px;
    }
    
    .barniz-contenido {
        padding: 0 15px;
    }
    
    .barniz-contenido p {
        font-size: 17px;
    }
    
    .barniz-destacado {
        padding: 30px 25px;
        margin: 30px 0;
    }
    
    .barniz-destacado h3 {
        font-size: 24px;
    }
    
    .barniz-destacado p {
        font-size: 17px;
    }
    
    .barniz-legal {
        font-size: 15px;
    }
    
    .precios-section {
        padding: 50px 0;
    }
    
    .precios-section h2 {
        font-size: 28px;
        padding: 0 15px;
    }
    
    .precios-contenido {
        padding: 0 15px;
    }
    
    .precios-contenido p {
        font-size: 17px;
    }
    
    .precio-destacado {
        padding: 30px 25px;
        margin: 30px 0;
    }
    
    .precio-destacado h3 {
        font-size: 26px;
    }
    
    .faq-section {
        padding: 50px 0;
    }
    
    .faq-contenido {
        padding: 0 15px;
        margin-bottom: 40px;
    }
    
    .faq-item {
        padding: 25px 30px;
        margin-bottom: 20px;
    }
    
    .faq-item h3 {
        font-size: 20px;
    }
    
    .faq-item p {
        font-size: 17px;
    }
    
    .cta-presupuesto {
        padding: 40px 30px;
        margin: 0 15px;
    }
    
    .cta-presupuesto h2 {
        font-size: 28px;
    }
    
    .btn-presupuesto {
        font-size: 18px;
        padding: 15px 35px;
    }
    
    .sobre-nosotros-section {
        padding: 50px 0;
    }
    
    .sobre-nosotros-section h2 {
        font-size: 28px;
        padding: 0 15px;
    }
    
    .sobre-contenido {
        margin: 0 15px;
        padding: 35px 30px;
    }
    
    .sobre-contenido p {
        font-size: 17px;
    }
    
    .hablamos {
        font-size: 22px;
        margin-top: 30px;
    }
    
    .contacto-section {
        padding: 50px 0;
    }
    
    .contacto-section h2 {
        font-size: 32px;
        padding: 0 15px;
    }
    
    .contacto-subtitle {
        font-size: 18px;
        padding: 0 15px;
        margin-bottom: 40px;
    }
    
    .contacto-grid {
        grid-template-columns: 1fr;
        gap: 25px;
        padding: 0 15px;
        margin-bottom: 40px;
    }
    
    .contacto-card-main {
        padding: 35px 25px;
    }
    
    .contacto-icon-main {
        font-size: 50px;
    }
    
    .contacto-link-phone {
        font-size: 28px;
    }
    
    .contacto-link-email {
        font-size: 18px;
    }
    
    .contacto-cta {
        margin: 0 15px;
        padding: 30px 25px;
    }
    
    .contacto-cta p {
        font-size: 20px;
    }
    
    .btn-contacto-page {
        font-size: 18px;
        padding: 15px 35px;
    }
    
    section h2 {
        font-size: 32px;
    }
    
    .ciudades-grid,
    .servicios-grid,
    .galeria-grid,
    .resultados-grid,
    .proceso-grid {
        grid-template-columns: 1fr;
    }
    
    .cta-final h2 {
        font-size: 32px;
    }
    
    .cta-button-large {
        font-size: 18px;
        padding: 15px 30px;
    }
    
    .formulario-container {
        padding: 30px 20px;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .hero-content h1 {
        font-size: 28px;
    }
    
    .logo-left {
        height: 50px;
    }
    
    .logo-container-left {
        top: 10px;
        left: 10px;
    }
    
    .main-nav {
        top: 10px;
        right: 10px;
    }
    
    .main-nav ul {
        gap: 12px;
    }
    
    .main-nav a {
        font-size: 12px;
        padding: 8px 12px;
    }
    
    .whatsapp-float {
        bottom: 15px;
        right: 15px;
        padding: 10px 15px;
        font-size: 13px;
    }
    
    .whatsapp-icon {
        font-size: 22px;
    }
    
    .whatsapp-text {
        font-size: 13px;
    }
    
    .video-section {
        padding: 40px 0;
    }
    
    .video-section h2 {
        font-size: 26px;
        padding: 0 10px;
    }
    
    .video-container {
        margin: 25px 10px 0;
    }
    
    .contenido-principal {
        padding: 40px 0;
    }
    
    .contenido-principal h2 {
        font-size: 24px;
    }
    
    .contenido-principal h3 {
        font-size: 18px;
    }
    
    .contenido-principal p,
    .lista-ventajas li {
        font-size: 15px;
    }
    
    .texto-final {
        font-size: 16px;
    }
    
    .trabajos-section {
        padding: 40px 0;
    }
    
    .trabajos-section h2 {
        font-size: 24px;
    }
    
    .trabajo-item img {
        height: 250px;
    }
    
    .experiencia-section {
        padding: 40px 0;
    }
    
    .experiencia-texto {
        margin-bottom: 25px;
    }
    
    .experiencia-texto p {
        font-size: 15px;
        padding: 0 10px;
    }
    
    .experiencia-imagen-single {
        margin-top: 25px;
    }
    
    .experiencia-imagen-single img {
        height: 250px;
    }
    
    .experiencia-section-alt {
        padding: 40px 0;
    }
    
    .experiencia-section-alt .experiencia-texto p {
        font-size: 15px;
        padding: 0 10px;
    }
    
    .resultados-section {
        padding: 40px 0;
    }
    
    .resultados-section h2 {
        font-size: 24px;
        margin-bottom: 30px;
        padding: 0 10px;
    }
    
    .resultados-grid {
        gap: 20px;
    }
    
    .resultado-item img {
        height: 250px;
    }
    
    .porque-section {
        padding: 40px 0;
    }
    
    .porque-section h2 {
        font-size: 22px;
        padding: 0 10px;
    }
    
    .intro-porque {
        font-size: 16px;
        padding: 0 10px;
        margin-bottom: 35px;
    }
    
    .porque-section h3 {
        font-size: 20px;
        margin-bottom: 30px;
        padding: 0 10px;
    }
    
    .proceso-grid {
        gap: 25px;
    }
    
    .proceso-item {
        padding: 30px 20px;
    }
    
    .proceso-numero {
        width: 55px;
        height: 55px;
        font-size: 28px;
        margin-bottom: 18px;
    }
    
    .proceso-item p {
        font-size: 15px;
    }
    
    .barniz-section {
        padding: 40px 0;
    }
    
    .barniz-section h2 {
        font-size: 22px;
        padding: 0 10px;
    }
    
    .barniz-contenido {
        padding: 0 10px;
    }
    
    .barniz-contenido p {
        font-size: 15px;
    }
    
    .barniz-destacado {
        padding: 25px 20px;
        margin: 25px 0;
    }
    
    .barniz-destacado h3 {
        font-size: 20px;
    }
    
    .barniz-destacado p {
        font-size: 15px;
    }
    
    .barniz-legal {
        font-size: 14px;
    }
    
    .precios-section {
        padding: 40px 0;
    }
    
    .precios-section h2 {
        font-size: 22px;
        padding: 0 10px;
    }
    
    .precios-contenido {
        padding: 0 10px;
    }
    
    .precios-contenido p {
        font-size: 15px;
    }
    
    .precio-destacado {
        padding: 25px 20px;
        margin: 25px 0;
    }
    
    .precio-destacado h3 {
        font-size: 20px;
    }
    
    .faq-section {
        padding: 40px 0;
    }
    
    .faq-contenido {
        padding: 0 10px;
        margin-bottom: 35px;
    }
    
    .faq-item {
        padding: 20px 25px;
        margin-bottom: 18px;
    }
    
    .faq-item h3 {
        font-size: 18px;
    }
    
    .faq-item p {
        font-size: 15px;
    }
    
    .cta-presupuesto {
        padding: 35px 20px;
        margin: 0 10px;
        border-radius: 15px;
    }
    
    .cta-presupuesto h2 {
        font-size: 22px;
        margin-bottom: 25px;
    }
    
    .btn-presupuesto {
        font-size: 16px;
        padding: 15px 25px;
    }
    
    .sobre-nosotros-section {
        padding: 40px 0;
    }
    
    .sobre-nosotros-section h2 {
        font-size: 24px;
        padding: 0 10px;
    }
    
    .sobre-contenido {
        margin: 0 10px;
        padding: 30px 20px;
    }
    
    .sobre-contenido p {
        font-size: 15px;
    }
    
    .hablamos {
        font-size: 20px;
        margin-top: 25px;
    }
    
    .contacto-section {
        padding: 40px 0;
    }
    
    .contacto-section h2 {
        font-size: 26px;
        padding: 0 10px;
    }
    
    .contacto-subtitle {
        font-size: 16px;
        padding: 0 10px;
        margin-bottom: 30px;
    }
    
    .contacto-grid {
        padding: 0 10px;
        margin-bottom: 30px;
        gap: 20px;
    }
    
    .contacto-card-main {
        padding: 30px 20px;
    }
    
    .contacto-icon-main {
        font-size: 45px;
    }
    
    .contacto-card-main h3 {
        font-size: 20px;
    }
    
    .contacto-link-phone {
        font-size: 24px;
    }
    
    .contacto-link-email {
        font-size: 16px;
    }
    
    .contacto-direccion {
        font-size: 18px;
    }
    
    .contacto-cta {
        margin: 0 10px;
        padding: 25px 20px;
    }
    
    .contacto-cta p {
        font-size: 18px;
    }
    
    .btn-contacto-page {
        font-size: 16px;
        padding: 14px 30px;
    }
    
    .btn-whatsapp {
        padding: 10px 25px;
        font-size: 15px;
    }
    
    .whatsapp-float {
        bottom: 20px;
        right: 20px;
        padding: 12px 20px;
        font-size: 15px;
    }
    
    .whatsapp-icon {
        font-size: 24px;
    }
    
    .whatsapp-text {
        font-size: 15px;
    }
    
    .video-section {
        padding: 50px 0;
    }
    
    .video-section h2 {
        font-size: 32px;
        padding: 0 15px;
    }
    
    .video-container {
        margin: 30px 15px 0;
    }
}

