/* Variables - VERDE CORPORATIVO PPF */
:root {
    --primary: #2e7d32;
    --secondary: #1b5e20;
    --accent: #66bb6a;
    --dark: #1a1a1a;
    --grey: #f8f9fa;
    --text: #333;
    --white: #fff;
    --border: #e0e0e0;
}

* { margin: 0; padding: 0; box-sizing: border-box; font-family: 'Inter', 'Segoe UI', -apple-system, sans-serif; }

body { color: var(--text); line-height: 1.6; overflow-x: hidden; }
a { text-decoration: none; color: inherit; transition: 0.3s; }
ul { list-style: none; }
.container { max-width: 1200px; margin: 0 auto; padding: 0 20px; }
.section-padding { padding: 90px 0; }
.bg-light { background-color: var(--grey); }

/* Botones */
.btn { 
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 32px; 
    border-radius: 8px; 
    font-weight: 700; 
    cursor: pointer; 
    border: none; 
    text-transform: uppercase; 
    letter-spacing: 0.5px; 
    font-size: 0.9rem; 
    transition: all 0.3s;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}
.btn-primary { 
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    color: var(--white); 
}
.btn-primary:hover { 
    transform: translateY(-3px); 
    box-shadow: 0 8px 20px rgba(46,125,50,0.4); 
}
.btn-outline { 
    border: 2px solid var(--primary); 
    color: var(--primary); 
    background: transparent; 
}
.btn-outline:hover { 
    background: var(--primary); 
    color: var(--white); 
    transform: translateY(-3px);
}
.btn-light {
    background: white;
    color: var(--primary);
    border: 2px solid var(--grey);
}
.btn-light:hover {
    border-color: var(--primary);
    transform: translateY(-3px);
}

/* Header Moderno - SIN TOP BAR */
.main-header { 
    background: rgba(255,255,255,0.98); 
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 20px rgba(0,0,0,0.08); 
    position: sticky; 
    top: 0; 
    z-index: 1000;
    border-bottom: 3px solid var(--primary);
}
.header-flex { 
    display: flex; 
    justify-content: space-between; 
    align-items: center; 
    height: 85px;
    padding: 0 30px;
}
.logo img { height: 65px; width: auto; }

/* Navegación Mejorada */
.main-nav > ul { 
    display: flex; 
    gap: 45px; 
    align-items: center; 
}
.main-nav a { 
    font-weight: 600; 
    color: var(--dark); 
    font-size: 1rem; 
    position: relative;
    padding: 8px 0;
}
.main-nav a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 3px;
    background: var(--primary);
    transition: width 0.3s;
}
.main-nav a:hover::after {
    width: 100%;
}

/* Submenú Elegante */
.has-submenu { position: relative; }
.submenu {
    display: none;
    position: absolute;
    top: 100%;
    left: -20px;
    background: white;
    min-width: 300px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.15);
    border-top: 3px solid var(--primary);
    padding: 15px 0;
    z-index: 9999;
    border-radius: 0 0 12px 12px;
    flex-direction: column;
    margin-top: 15px;
}
.has-submenu:hover .submenu { display: block; }
.submenu li { width: 100%; }
.submenu li a {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 25px;
    font-size: 0.95rem;
    color: #555;
    border-left: 3px solid transparent;
}
.submenu li a::after {
    display: none;
}
.submenu li a i {
    color: var(--primary);
    font-size: 1.1rem;
}
.submenu li a:hover {
    background: #f8faf8;
    color: var(--primary);
    border-left-color: var(--primary);
    padding-left: 30px;
}

html { scroll-behavior: smooth; }
section[id] { scroll-margin-top: 85px; }

/* Hero con Video - DISEÑO ÚNICO */
.hero {
    position: relative;
    height: 100vh;
    min-height: 700px;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero-video {
    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(135deg, rgba(30,30,30,0.85) 0%, rgba(27,94,32,0.7) 100%);
    z-index: 2;
}

/* Decoración diagonal única */
.hero::after {
    content: '';
    position: absolute;
    bottom: -50px;
    left: 0;
    width: 100%;
    height: 150px;
    background: white;
    transform: skewY(-2deg);
    z-index: 3;
}

.hero .container {
    position: relative;
    z-index: 4;
}

.hero-content {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 60px;
    align-items: center;
}

.hero-text { 
    animation: fadeInLeft 1s ease; 
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(46,125,50,0.9);
    color: white;
    padding: 12px 24px;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 700;
    margin-bottom: 25px;
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 15px rgba(46,125,50,0.3);
}

.hero h1 { 
    font-size: 4rem; 
    margin-bottom: 25px; 
    line-height: 1.1; 
    font-weight: 900;
    color: white;
    text-shadow: 2px 2px 20px rgba(0,0,0,0.5);
}

.hero h1 .highlight {
    color: var(--accent);
    display: block;
}

.hero-description { 
    font-size: 1.25rem; 
    margin-bottom: 35px; 
    line-height: 1.7;
    color: rgba(255,255,255,0.95);
    max-width: 600px;
}

.hero-buttons { 
    display: flex; 
    gap: 20px; 
    flex-wrap: wrap; 
}

/* Tarjeta flotante de contacto rápido */
.hero-contact-card {
    background: rgba(255,255,255,0.95);
    backdrop-filter: blur(10px);
    padding: 35px;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.3);
    animation: fadeInRight 1s ease;
}

.hero-contact-card h3 {
    color: var(--primary);
    font-size: 1.4rem;
    margin-bottom: 20px;
    font-weight: 800;
}

.contact-quick-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px;
    margin-bottom: 12px;
    border-radius: 10px;
    transition: all 0.3s;
}

.contact-quick-item:hover {
    background: #f8faf8;
    transform: translateX(5px);
}

.contact-quick-item i {
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    color: white;
    border-radius: 50%;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.contact-quick-item strong {
    display: block;
    color: var(--dark);
    font-size: 0.85rem;
    margin-bottom: 3px;
}

.contact-quick-item span {
    color: #666;
    font-size: 0.95rem;
}

@keyframes fadeInLeft {
    from { opacity: 0; transform: translateX(-50px); }
    to { opacity: 1; transform: translateX(0); }
}

@keyframes fadeInRight {
    from { opacity: 0; transform: translateX(50px); }
    to { opacity: 1; transform: translateX(0); }
}

/* Sección de Estadísticas - ÚNICO */
.stats-section {
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    padding: 60px 0;
    margin-top: -80px;
    position: relative;
    z-index: 5;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    text-align: center;
}

.stat-item {
    color: white;
    padding: 20px;
}

.stat-item i {
    font-size: 3rem;
    margin-bottom: 15px;
    opacity: 0.9;
}

.stat-number {
    font-size: 3rem;
    font-weight: 900;
    display: block;
    margin-bottom: 10px;
    text-shadow: 2px 2px 10px rgba(0,0,0,0.3);
}

.stat-label {
    font-size: 1rem;
    font-weight: 600;
    opacity: 0.95;
}

/* Sección Empresa - DISEÑO DIFERENTE */
.company-section {
    background: white;
    position: relative;
    overflow: hidden;
}

.company-section::before {
    content: '';
    position: absolute;
    top: 0;
    right: -100px;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(46,125,50,0.05), transparent);
    border-radius: 50%;
}

.company-grid {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 80px;
    align-items: center;
}

.company-image-wrapper {
    position: relative;
}

.company-img {
    width: 100%;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.15);
    position: relative;
    z-index: 2;
}

/* Badge de experiencia diferente */
.years-badge {
    position: absolute;
    top: 30px;
    right: -30px;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    color: white;
    width: 140px;
    height: 140px;
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    box-shadow: 0 15px 40px rgba(46,125,50,0.4);
    z-index: 3;
    animation: rotate 20s linear infinite;
}

.years-badge .number {
    font-size: 3rem;
    font-weight: 900;
    line-height: 1;
}

.years-badge .text {
    font-size: 0.85rem;
    font-weight: 700;
    text-align: center;
}

@keyframes rotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.section-header {
    margin-bottom: 40px;
}

.section-tag {
    display: inline-block;
    color: var(--primary);
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 0.85rem;
    margin-bottom: 15px;
    padding: 8px 20px;
    background: rgba(46,125,50,0.1);
    border-radius: 30px;
}

.company-section h2 {
    font-size: 2.8rem;
    color: var(--dark);
    line-height: 1.2;
    margin-bottom: 25px;
    font-weight: 900;
}

.company-description {
    font-size: 1.15rem;
    color: #555;
    line-height: 1.8;
    margin-bottom: 30px;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-top: 35px;
}

.value-box {
    display: flex;
    gap: 15px;
    padding: 20px;
    background: #f8faf8;
    border-radius: 12px;
    border-left: 4px solid var(--primary);
    transition: all 0.3s;
}

.value-box:hover {
    background: white;
    box-shadow: 0 8px 25px rgba(0,0,0,0.08);
    transform: translateY(-3px);
}

.value-box i {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    color: white;
    border-radius: 10px;
    font-size: 1.3rem;
    flex-shrink: 0;
}

.value-box h4 {
    color: var(--dark);
    font-size: 1.1rem;
    margin-bottom: 5px;
    font-weight: 700;
}

.value-box p {
    color: #666;
    font-size: 0.95rem;
    line-height: 1.5;
}

/* Servicios - GRID MODERNO */
.services-section {
    background: linear-gradient(to bottom, #f8faf8 0%, white 100%);
}

.section-title-center {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 60px;
}

.section-title-center h2 {
    font-size: 2.8rem;
    color: var(--dark);
    margin-bottom: 20px;
    font-weight: 900;
}

.section-title-center p {
    font-size: 1.15rem;
    color: #666;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
}

.service-card {
    background: white;
    padding: 40px 35px;
    border-radius: 16px;
    border: 2px solid #f0f0f0;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--primary), var(--accent));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s;
}

.service-card:hover::before {
    transform: scaleX(1);
}

.service-card:hover {
    border-color: var(--primary);
    box-shadow: 0 20px 50px rgba(46,125,50,0.15);
    transform: translateY(-10px);
}

.service-icon {
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(46,125,50,0.1), rgba(27,94,32,0.05));
    border-radius: 16px;
    margin-bottom: 25px;
    transition: all 0.3s;
}

.service-card:hover .service-icon {
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    transform: scale(1.1) rotate(5deg);
}

.service-icon i {
    font-size: 2.5rem;
    color: var(--primary);
    transition: all 0.3s;
}

.service-card:hover .service-icon i {
    color: white;
}

.service-card h3 {
    font-size: 1.4rem;
    color: var(--dark);
    margin-bottom: 15px;
    font-weight: 700;
    line-height: 1.3;
}

.service-card p {
    color: #666;
    line-height: 1.7;
    margin-bottom: 25px;
}

.service-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--primary);
    font-weight: 700;
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.service-link i {
    transition: transform 0.3s;
}

.service-card:hover .service-link i {
    transform: translateX(5px);
}

/* CTA Único - Sin patrón de puntos */
.cta-section {
    background: linear-gradient(135deg, var(--dark) 0%, var(--secondary) 50%, var(--primary) 100%);
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

/* Formas geométricas de fondo */
.cta-section::before {
    content: '';
    position: absolute;
    top: -100px;
    left: -100px;
    width: 400px;
    height: 400px;
    background: rgba(255,255,255,0.05);
    border-radius: 50%;
}

.cta-section::after {
    content: '';
    position: absolute;
    bottom: -150px;
    right: -150px;
    width: 500px;
    height: 500px;
    background: rgba(255,255,255,0.03);
    border-radius: 50%;
}

.cta-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.cta-section h2 {
    font-size: 3rem;
    color: white;
    margin-bottom: 20px;
    font-weight: 900;
    line-height: 1.2;
}

.cta-section p {
    font-size: 1.2rem;
    color: rgba(255,255,255,0.9);
    margin-bottom: 40px;
    line-height: 1.7;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.btn-cta-white {
    background: white;
    color: var(--primary);
    padding: 20px 45px;
    border-radius: 12px;
    font-weight: 800;
    font-size: 1.05rem;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
    transition: all 0.3s;
}

.btn-cta-white:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.4);
}

.btn-cta-outline {
    background: transparent;
    color: white;
    padding: 20px 45px;
    border: 3px solid white;
    border-radius: 12px;
    font-weight: 800;
    font-size: 1.05rem;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    transition: all 0.3s;
}

.btn-cta-outline:hover {
    background: white;
    color: var(--primary);
    transform: translateY(-5px);
}

/* Galería Mejorada */
.gallery-section {
    background: white;
}

.gallery-tabs {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 50px;
}

.gallery-tab {
    padding: 14px 35px;
    background: #f0f0f0;
    border: 2px solid transparent;
    border-radius: 50px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 1rem;
}

.gallery-tab.active {
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    color: white;
    border-color: var(--primary);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 25px;
}

.gallery-item {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    cursor: pointer;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    transition: all 0.4s;
}

.gallery-item:hover {
    transform: scale(1.03);
    box-shadow: 0 15px 40px rgba(0,0,0,0.2);
}

.gallery-item img,
.gallery-item video {
    width: 100%;
    height: 280px;
    object-fit: cover;
    display: block;
}

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(46,125,50,0.9), rgba(27,94,32,0.9));
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s;
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-overlay i {
    font-size: 3.5rem;
    color: white;
}

/* Página de Servicio */
.page-header {
    background: linear-gradient(135deg, var(--dark) 0%, var(--primary) 100%);
    padding: 100px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-header::after {
    content: '';
    position: absolute;
    bottom: -50px;
    left: 0;
    width: 100%;
    height: 100px;
    background: white;
    transform: skewY(-2deg);
}

.page-header h1 {
    font-size: 3.5rem;
    color: white;
    margin-bottom: 15px;
    font-weight: 900;
    position: relative;
    z-index: 2;
}

.page-header p {
    font-size: 1.2rem;
    color: rgba(255,255,255,0.9);
    position: relative;
    z-index: 2;
}

.service-content-wrapper {
    display: grid;
    grid-template-columns: 350px 1fr;
    gap: 60px;
    align-items: start;
}

.sidebar-widget {
    background: white;
    padding: 35px;
    border-radius: 16px;
    border: 2px solid #f0f0f0;
    position: sticky;
    top: 110px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
}

.sidebar-widget h3 {
    font-size: 1.4rem;
    color: var(--dark);
    margin-bottom: 25px;
    font-weight: 800;
    border-bottom: 3px solid var(--primary);
    padding-bottom: 15px;
}

.sidebar-widget ul {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.sidebar-widget li a {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 15px 18px;
    border-radius: 10px;
    color: #555;
    font-weight: 600;
    transition: all 0.3s;
    border-left: 3px solid transparent;
}

.sidebar-widget li a i {
    color: #bbb;
    font-size: 0.8rem;
    transition: all 0.3s;
}

.sidebar-widget li a:hover {
    background: #f8faf8;
    color: var(--primary);
    padding-left: 25px;
    border-left-color: var(--primary);
}

.sidebar-widget li a:hover i {
    color: var(--primary);
}

.sidebar-widget li a.active {
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    color: white;
    font-weight: 700;
    border-left-color: var(--accent);
}

.sidebar-widget li a.active i {
    color: white;
}

.service-body {
    background: white;
    padding: 50px;
    border-radius: 16px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
}

.service-body h3 {
    color: var(--dark);
    font-size: 2rem;
    margin-top: 40px;
    margin-bottom: 20px;
    font-weight: 800;
    border-left: 5px solid var(--primary);
    padding-left: 20px;
}

.service-body ul {
    margin: 25px 0;
    padding-left: 25px;
}

.service-body li {
    margin-bottom: 15px;
    list-style-type: disc;
    color: #555;
    line-height: 1.8;
}

.service-body li strong {
    color: var(--dark);
}

.cta-box {
    background: linear-gradient(135deg, #f8faf8, white);
    padding: 45px;
    border-radius: 16px;
    border: 3px solid var(--primary);
    margin-top: 50px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(46,125,50,0.1);
}

.cta-box h3 {
    color: var(--dark);
    font-size: 2rem;
    margin-bottom: 15px;
    font-weight: 800;
    border: none;
    padding: 0;
}

/* Contacto Mejorado */
.contact-grid {
    display: grid;
    grid-template-columns: 0.8fr 1.2fr;
    gap: 60px;
}

.contact-info {
    background: linear-gradient(135deg, #f8faf8, white);
    padding: 45px;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
}

.contact-info h2 {
    color: var(--dark);
    font-size: 2rem;
    margin-bottom: 15px;
    font-weight: 800;
}

.dept-card {
    background: white;
    padding: 25px;
    border-radius: 12px;
    margin-bottom: 20px;
    border-left: 4px solid var(--primary);
    box-shadow: 0 3px 10px rgba(0,0,0,0.05);
    transition: all 0.3s;
}

.dept-card:hover {
    transform: translateX(5px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.1);
}

.dept-card h4 {
    color: var(--primary);
    font-size: 1.2rem;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 800;
}

.dept-card h4 i {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    color: white;
    border-radius: 8px;
}

.dept-card p {
    color: #666;
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.dept-card p i {
    color: var(--primary);
}

.map-container {
    margin-top: 30px;
    border-radius: 16px;
    overflow: hidden;
    height: 350px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.map-container iframe {
    width: 100%;
    height: 100%;
    border: 0;
}

.contact-form-wrapper {
    background: white;
    padding: 45px;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
}

.contact-form-wrapper h2 {
    font-size: 2rem;
    color: var(--dark);
    margin-bottom: 10px;
    font-weight: 800;
}

.form-group {
    margin-bottom: 25px;
}

.form-group label {
    display: block;
    margin-bottom: 10px;
    font-weight: 700;
    color: var(--dark);
    font-size: 0.95rem;
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 16px 20px;
    border: 2px solid #e0e0e0;
    border-radius: 10px;
    background: #fafafa;
    font-size: 1rem;
    transition: all 0.3s;
    font-family: inherit;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--primary);
    background: white;
    box-shadow: 0 0 0 3px rgba(46,125,50,0.1);
}

.alert {
    padding: 18px 25px;
    border-radius: 12px;
    margin-bottom: 25px;
    display: flex;
    align-items: center;
    gap: 15px;
    font-weight: 600;
}

.alert.success {
    background: #d4edda;
    color: #155724;
    border-left: 5px solid #28a745;
}

.alert.error {
    background: #f8d7da;
    color: #721c24;
    border-left: 5px solid #dc3545;
}

.alert i {
    font-size: 1.5rem;
}

/* Footer Moderno */
.main-footer {
    background: var(--dark);
    color: #bbb;
    padding-top: 80px;
    position: relative;
}

.main-footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--primary), var(--accent), var(--primary));
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 50px;
    padding-bottom: 50px;
}

.footer-col h3 {
    color: white;
    margin-bottom: 25px;
    font-size: 1.3rem;
    font-weight: 800;
    position: relative;
    padding-bottom: 15px;
}

.footer-col h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 3px;
    background: var(--primary);
}

.footer-col p {
    line-height: 1.8;
    margin-bottom: 15px;
}

.footer-col ul li {
    margin-bottom: 12px;
    padding-bottom: 12px;
    border-bottom: 1px solid #333;
}

.footer-col ul li:last-child {
    border-bottom: none;
}

.footer-col ul li a {
    display: flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s;
}

.footer-col ul li a:hover {
    color: var(--accent);
    padding-left: 8px;
}

.footer-col ul li a i {
    color: var(--primary);
}

.footer-bottom {
    background: #0a0a0a;
    padding: 25px 0;
    text-align: center;
    font-size: 0.9rem;
}

/* Mobile Responsivo */
.mobile-toggle {
    display: none;
    font-size: 2rem;
    cursor: pointer;
    color: var(--dark);
}

@media (max-width: 768px) {
    .mobile-toggle { display: block; }
    
    .header-flex {
        padding: 0 20px;
        height: 70px;
    }
    
    .logo img { height: 50px; }
    
    .main-nav {
        display: none;
        position: absolute;
        top: 70px;
        left: 0;
        width: 100%;
        background: white;
        border-top: 3px solid var(--primary);
        box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    }
    
    .main-nav.active { display: block; }
    
    .main-nav > ul {
        flex-direction: column;
        padding: 20px;
        gap: 0;
        align-items: flex-start;
    }
    
    .main-nav li { width: 100%; }
    
    .main-nav li a {
        display: block;
        padding: 15px 0;
        border-bottom: 1px solid #eee;
    }
    
    .main-nav li a::after { display: none; }
    
    .submenu {
        position: static;
        box-shadow: none;
        margin-top: 0;
        padding-left: 20px;
        background: #f8faf8;
    }
    
    /* Hero Mobile */
    .hero {
        height: auto;
        min-height: 600px;
        padding: 80px 0 60px;
    }
    
    .hero-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .hero h1 { font-size: 2.5rem; }
    
    .hero-description { font-size: 1.1rem; }
    
    .hero-buttons {
        flex-direction: column;
        width: 100%;
    }
    
    .hero-buttons .btn { width: 100%; justify-content: center; }
    
    /* Stats Mobile */
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }
    
    .stat-number { font-size: 2.5rem; }
    
    /* Company Mobile */
    .company-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .years-badge {
        right: 20px;
        width: 120px;
        height: 120px;
    }
    
    .years-badge .number { font-size: 2.5rem; }
    
    .company-section h2 { font-size: 2.2rem; }
    
    .values-grid {
        grid-template-columns: 1fr;
    }
    
    /* Services Mobile */
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    /* Service Page Mobile */
    .service-content-wrapper {
        grid-template-columns: 1fr;
    }
    
    .sidebar-widget {
        position: static;
        order: 2;
        margin-top: 30px;
    }
    
    .service-body {
        padding: 30px 20px;
    }
    
    /* Contact Mobile */
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    /* CTA Mobile */
    .cta-section { padding: 60px 0; }
    
    .cta-section h2 { font-size: 2rem; }
    
    .cta-buttons {
        flex-direction: column;
        width: 100%;
    }
    
    .btn-cta-white,
    .btn-cta-outline {
        width: 100%;
        justify-content: center;
    }
    
    /* Gallery Mobile */
    .gallery-grid {
        grid-template-columns: 1fr;
    }
    
    /* Footer Mobile */
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 35px;
    }
    
    .section-padding { padding: 60px 0; }
}