:root {
    --primary: #0066cc;
    --primary-dark: #004c99;
    --secondary: #333333;
    --light-bg: #f8f9fa;
    --white: #ffffff;
    --text-grey: #555555;
    --border-radius: 4px;
}

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

body {
    font-family: 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
    line-height: 1.6;
    color: var(--secondary);
    background-color: var(--white);
}

h1, h2, h3 {
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1rem;
}

h2 {
    font-size: 2rem;
    color: var(--secondary);
    text-align: center;
    margin-bottom: 3rem;
    position: relative;
}

h2::after {
    content: '';
    display: block;
    width: 60px;
    height: 3px;
    background: var(--primary);
    margin: 15px auto 0;
}

p {
    margin-bottom: 1.5rem;
    color: var(--text-grey);
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

.btn {
    display: inline-block;
    padding: 12px 30px;
    text-decoration: none;
    border-radius: var(--border-radius);
    font-weight: 600;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
    font-size: 1rem;
}

.btn-primary {
    background-color: var(--primary);
    color: var(--white);
}

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

.btn-outline {
    border: 2px solid var(--white);
    color: var(--white);
    margin-left: 10px;
}

.btn-outline:hover {
    background-color: var(--white);
    color: var(--primary);
}

header {
    background-color: var(--white);
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 80px;
}

.logo {
    display: block;
    line-height: 0;
}

.logo img {
    height: 42px;
    width: auto;
    display: block;
}

.nav-links {
    display: flex;
    list-style: none;
}

.nav-links li {
    margin-left: 30px;
}

.nav-links a {
    text-decoration: none;
    color: var(--secondary);
    font-weight: 500;
    font-size: 0.95rem;
    transition: color 0.3s;
}

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

.hero {
    background: linear-gradient(rgba(0, 0, 0, 0.55), rgba(0, 0, 0, 0.55)), url('../img/hero/hero_rjpro.png');
    background-size: cover;
    background-position: center;
    height: 90vh;
    display: flex;
    align-items: center;
    text-align: center;
    margin-top: 80px;
}

.hero-content {
    color: var(--white);
    max-width: 800px;
    margin: 0 auto;
}

.hero h1 {
    font-size: 3rem;
    margin-bottom: 1.5rem;
}

.hero p {
    color: #e0e0e0;
    font-size: 1.2rem;
    margin-bottom: 2.5rem;
}

section {
    padding: 80px 0;
}

.pain-points { background-color: var(--white); }

.grid-4 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    text-align: center;
}

.pain-card {
    padding: 30px;
    border: 1px solid #eee;
    border-radius: var(--border-radius);
    transition: box-shadow 0.3s;
}

.pain-card:hover { box-shadow: 0 5px 15px rgba(0,0,0,0.1); }

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

.pain-card h3 {
    font-size: 1.1rem;
    margin-bottom: 15px;
    color: var(--secondary);
}

.main-service { background-color: var(--light-bg); }

.service-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.service-text h3 {
    color: var(--primary);
    font-size: 1.5rem;
    margin-bottom: 20px;
}

.service-list {
    list-style: none;
    margin-top: 20px;
}

.service-list li {
    margin-bottom: 15px;
    display: flex;
    align-items: flex-start;
}

.service-list li i {
    color: var(--primary);
    margin-right: 15px;
    margin-top: 5px;
}

.service-img {
    position: relative;
    height: 400px;
    border-radius: var(--border-radius);
    overflow: hidden;
}

.service-img::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: url('../img/landing/industrial_rjpro.png');
    background-size: cover;
    background-position: center;
    border-radius: var(--border-radius);
    transition: transform 0.5s ease;
}

.service-img:hover::before {
    transform: scale(1.1) translateX(5%);
}

.other-services-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.service-card {
    background: var(--white);
    padding: 24px;
    border-left: 4px solid var(--primary);
    box-shadow: 0 3px 10px rgba(0,0,0,0.05);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.service-card:hover {
    transform: scale(1.04);
    box-shadow: 0 8px 24px rgba(0,0,0,0.1);
}

.service-card h3 {
    margin-bottom: 12px;
    font-size: 1.1rem;
    color: var(--primary);
}

.service-card p {
    margin: 0;
    font-size: 0.9rem;
    line-height: 1.5;
}

.clients {
    background-color: var(--white);
    color: var(--secondary);
    text-align: center;
}

.clients h2 { color: var(--secondary); }
.clients h2::after { background: var(--primary); }

.clients-slider-wrapper {
    overflow: hidden;
    margin-top: 2.5rem;
    padding: 0.5rem 0;
    width: 100vw;
    position: relative;
    left: 50%;
    right: 50%;
    margin-left: -50vw;
    margin-right: -50vw;
}

.clients-slider-track {
    display: inline-flex;
    gap: 2rem;
    animation: clients-slide 58s linear infinite;
}

.client-card {
    flex-shrink: 0;
    width: 460px;
    height: 260px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
    background: transparent;
    border-radius: var(--border-radius);
    transition: transform 0.25s ease;
}

.client-card:hover { transform: scale(1.08); }

.client-card img {
    max-width: 100%;
    max-height: 200px;
    width: auto;
    height: auto;
    object-fit: contain;
}

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

.about-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 50px;
}

.iso-box {
    background: var(--primary);
    color: var(--white);
    padding: 40px;
    text-align: center;
    border-radius: var(--border-radius);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.iso-box .iso-logo {
    max-width: 120px;
    max-height: 100px;
    object-fit: contain;
    margin-bottom: 20px;
}

.nosotros-hero {
    position: relative;
    margin-top: 80px;
    min-height: 36vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 60px 24px;
    overflow: hidden;
}

.nosotros-hero::before {
    content: '';
    position: absolute;
    inset: -20px;
    background: url('../img/nosotros/auditoria_lockout_tagout_rjpro.png') center / cover no-repeat;
    filter: blur(14px);
    transform: scale(1.1);
    z-index: 0;
}

.nosotros-hero::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6));
    z-index: 1;
}

.nosotros-hero .nosotros-hero-inner {
    position: relative;
    z-index: 2;
}

.nosotros-hero-inner {
    max-width: 800px;
}

.nosotros-hero h1 {
    color: var(--white);
    font-size: 2.5rem;
    margin-bottom: 16px;
}

.nosotros-hero-sub {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.2rem;
    margin: 0;
}

.nosotros-about-box {
    background: var(--white);
    padding: 64px 0;
}

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

.nosotros-about-text h2 {
    text-align: left;
    margin-bottom: 24px;
}

.nosotros-about-text h2::after {
    margin: 12px 0 0 0;
}

.nosotros-about-text p {
    margin-bottom: 1rem;
}

.nosotros-about-img {
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}

.nosotros-about-img img {
    width: 100%;
    height: auto;
    display: block;
}

.nosotros-mision-vision {
    background: var(--light-bg);
    padding: 64px 0;
}

.mision-vision-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
}

.mision-vision-card {
    background: var(--white);
    padding: 36px 32px;
    border-radius: var(--border-radius);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.06);
    border-left: 4px solid var(--primary);
}

.mision-vision-card h3 {
    color: var(--primary);
    font-size: 1.25rem;
    margin-bottom: 16px;
}

.mision-vision-card p {
    margin-bottom: 12px;
    font-size: 0.95rem;
}

.mision-vision-card p:last-child {
    margin-bottom: 0;
}

.nosotros-valores {
    background: linear-gradient(180deg, var(--light-bg) 0%, var(--white) 100%);
    padding: 64px 0;
}

.nosotros-valores-title {
    text-align: center;
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--secondary);
    margin-bottom: 40px;
    letter-spacing: 0.02em;
}

.nosotros-valores-title::after {
    content: '';
    display: block;
    width: 50px;
    height: 3px;
    background: var(--primary);
    margin: 14px auto 0;
}

.nosotros-valores-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    max-width: 1000px;
    margin: 0 auto;
}

.valor-card {
    background: var(--white);
    border-radius: 8px;
    padding: 32px 28px;
    text-align: center;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    border-left: 4px solid var(--primary);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.valor-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 28px rgba(0, 102, 204, 0.12);
}

.valor-name {
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--secondary);
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

@media (max-width: 992px) {
    .nosotros-valores-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
    .nosotros-valores-grid { gap: 16px; }
    .nosotros-valores-title { font-size: 1.5rem; margin-bottom: 28px; }
    .valor-card { padding: 22px 20px; }
}

.nosotros-section {
    padding: 100px 0 80px;
}

.nosotros-section .container {
    max-width: 1580px;
    width: 96%;
}

.about-grid--nosotros {
    grid-template-columns: minmax(0, 1fr) 360px 200px;
    align-items: stretch;
    gap: 36px;
}

.nosotros-gallery {
    display: flex;
    flex-direction: column;
    gap: 24px;
    position: relative;
}

.nosotros-gallery figure {
    margin: 0;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
    position: relative;
    background: #000;
}

.nosotros-gallery figure:not(:first-child) {
    margin-top: -25px;
}

.nosotros-gallery figure:nth-child(1) { z-index: 4; }
.nosotros-gallery figure:nth-child(2) { z-index: 3; }
.nosotros-gallery figure:nth-child(3) { z-index: 2; }
.nosotros-gallery figure:nth-child(4) { z-index: 1; }

.nosotros-gallery img {
    width: 100%;
    display: block;
    transition: transform 0.4s ease;
}

.nosotros-gallery figure:hover img {
    transform: scale(1.06);
}

.nosotros-quality {
    background: var(--primary);
    color: var(--white);
    border-radius: var(--border-radius);
    padding: 32px 28px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.15);
}

.nosotros-quality h3 {
    font-size: 1.4rem;
    letter-spacing: 0.1em;
    margin-bottom: 16px;
}

.nosotros-quality p {
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 0;
    line-height: 1.6;
}

.nosotros-clients {
    margin-top: 32px;
    position: relative;
}

.nosotros-clients h3 {
    font-size: 1.15rem;
    color: var(--secondary);
    margin-bottom: 18px;
}

.clients-slider-wrapper--inline {
    width: 100%;
    position: static;
    margin: 0;
    border-radius: var(--border-radius);
    border: 1px solid rgba(0, 0, 0, 0.06);
    overflow: hidden;
}

.clients-slider-wrapper--inline .clients-slider-track {
    gap: 1.5rem;
    padding: 16px 0;
}

.clients-slider-wrapper--inline .client-card {
    width: 460px;
    height: 240px;
    padding: 2.25rem;
}

.clients-slider-wrapper--inline .client-card img {
    max-height: 170px;
}

.contacto-hero {
    position: relative;
    margin-top: 80px;
    min-height: 36vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 60px 24px;
    overflow: hidden;
}

.contacto-hero::before {
    content: '';
    position: absolute;
    inset: -20px;
    background: url('../img/nosotros/loto_bloqueo_operacional.png') center / cover no-repeat;
    filter: blur(14px);
    transform: scale(1.1);
    z-index: 0;
}

.contacto-hero::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6));
    z-index: 1;
}

.contacto-hero .contacto-hero-inner {
    position: relative;
    z-index: 2;
}

.contacto-hero h1 {
    color: var(--white);
    font-size: 2.5rem;
    margin-bottom: 16px;
}

.contacto-hero-sub {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.2rem;
    margin: 0;
}

.contacto-box {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    max-width: 1000px;
    margin: -24px auto 0;
    background: var(--white);
    border-radius: 16px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.12);
    overflow: hidden;
}

.contacto-info {
    position: relative;
    min-height: 380px;
    background: url('../img/nosotros/sistema_loto_bloqueo_rjpro.png') center / cover no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
}

.contacto-info-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.55));
    z-index: 0;
}

.contacto-info-content {
    position: relative;
    z-index: 1;
    padding: 32px 28px;
    color: var(--white);
}

.contacto-info-content h3 {
    font-size: 1.2rem;
    color: var(--white);
    margin-bottom: 24px;
    text-shadow: 0 0 12px rgba(0, 0, 0, 0.9), 0 1px 3px rgba(0, 0, 0, 0.95);
}

.contacto-info-content a {
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--white);
    text-decoration: none;
    font-size: 0.95rem;
    margin-bottom: 16px;
    text-shadow: 0 0 10px rgba(0, 0, 0, 0.9), 0 1px 2px rgba(0, 0, 0, 0.95);
}

.contacto-info-content a:hover {
    color: rgba(255, 255, 255, 0.9);
}

.contacto-info-content a i {
    font-size: 1rem;
    opacity: 0.95;
}

.contacto-box-form {
    padding: 40px;
}

.contacto-box-form .form-group {
    margin-bottom: 18px;
}

.contact {
    background-color: var(--light-bg);
    padding: 64px 0 80px;
}

.contact-box {
    display: grid;
    grid-template-columns: 1fr 1fr;
    max-width: 1000px;
    margin: 0 auto;
    background: var(--white);
    border-radius: var(--border-radius);
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.1);
    overflow: hidden;
}

.contact-box-image {
    min-height: 320px;
    background-image: url('../img/landing/auditoria_terreno_rjpro.png');
    background-size: cover;
    background-position: center;
}

.contact-box-form { padding: 40px; }
.contact-box-form .form-group { margin-bottom: 18px; }

.contact-form {
    background: transparent;
    padding: 0;
    border-radius: 0;
    box-shadow: none;
}

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

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    font-size: 0.9rem;
}

.form-control {
    width: 100%;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: var(--border-radius);
    font-family: inherit;
}

.form-control:focus {
    outline: none;
    border-color: var(--primary);
}

.form-success-msg {
    margin-bottom: 1rem;
    padding: 0.75rem 1rem;
    background: #e8f5e9;
    color: #2e7d32;
    border-radius: var(--border-radius);
    font-size: 0.95rem;
}

footer {
    background-color: var(--secondary);
    color: rgba(255, 255, 255, 0.78);
    padding: 64px 0 28px;
    font-size: 0.9rem;
}

.footer-inner {
    display: grid;
    grid-template-columns: 1.4fr 1fr 1fr auto;
    gap: 56px;
    align-items: start;
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 24px;
}

.footer-wordmark {
    font-size: 1.5rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    margin-bottom: 20px;
    line-height: 1;
}

.footer-wordmark .footer-wordmark-pro { color: var(--white); }
.footer-wordmark .footer-wordmark-rj { color: rgba(255, 255, 255, 0.85); }

.footer-desc {
    margin: 0;
    font-size: 0.875rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.7);
    max-width: 280px;
}

.footer-col h4 {
    color: var(--white);
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 16px;
}

.footer-col ul { list-style: none; padding: 0; margin: 0; }
.footer-col li { margin-bottom: 8px; }

.footer-col a {
    color: rgba(255, 255, 255, 0.78);
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.2s ease;
}

.footer-col a:hover { color: var(--white); }

.footer-contact a,
.footer-contact span {
    display: block;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.78);
    text-decoration: none;
    margin-bottom: 8px;
}

.footer-contact a:hover { color: var(--white); }

.footer-sgc-link {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 20px;
    color: var(--white);
    text-decoration: none;
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.02em;
    border: 1px solid rgba(255, 255, 255, 0.25);
    border-radius: 6px;
    background: transparent;
    transition: border-color 0.2s ease, background 0.2s ease;
}

.footer-sgc-link:hover {
    border-color: rgba(255, 255, 255, 0.45);
    background: rgba(255, 255, 255, 0.06);
}

.footer-sgc-link i {
    font-size: 0.9rem;
    opacity: 0.9;
}

.footer-access-links {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-bottom {
    max-width: 1100px;
    margin: 0 auto;
    padding: 28px 24px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    margin-top: 48px;
    text-align: center;
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.8rem;
}

.footer-bottom p { margin: 0 0 2px 0; }

.page-hero {
    background-color: var(--light-bg);
    margin-top: 80px;
    padding: 60px 0;
}

.page-hero h1 {
    text-align: center;
    color: var(--secondary);
}

.servicios-hero {
    position: relative;
    margin-top: 80px;
    min-height: 40vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 60px 24px;
    overflow: hidden;
}

.servicios-hero::before {
    content: '';
    position: absolute;
    inset: -20px;
    background: url('../img/landing/industrial_rjpro.png') center / cover no-repeat;
    filter: blur(14px);
    transform: scale(1.1);
    z-index: 0;
}

.servicios-hero::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6));
    z-index: 1;
}

.servicios-hero .servicios-hero-inner {
    position: relative;
    z-index: 2;
}

.servicios-hero h1 {
    color: var(--white);
    font-size: 2.5rem;
    margin: 0;
}

.servicios-page-content {
    padding: 60px 0;
    background-color: var(--light-bg);
}

.servicios-page-content h2 {
    color: var(--secondary);
    margin-bottom: 12px;
}

.servicios-page-content h2::after {
    content: '';
    display: block;
    width: 60px;
    height: 4px;
    background: var(--primary);
    margin-top: 12px;
}

.servicios-page-content .servicios-cards {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.75rem;
    margin: 2rem 0 0;
}

.servicios-page-content .servicio-card-mod {
    position: relative;
    background: var(--white);
    padding: 1.75rem 1.75rem 1.75rem 2rem;
    border-radius: 16px;
    border: 1px solid rgba(0, 66, 204, 0.08);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04), 0 1px 2px rgba(0, 0, 0, 0.02);
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.servicios-page-content .servicio-card-mod::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 4px;
    background: linear-gradient(180deg, var(--primary) 0%, var(--primary-dark) 100%);
    border-radius: 16px 0 0 16px;
}

.servicios-page-content .servicio-card-mod:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 40px rgba(0, 66, 204, 0.08), 0 4px 12px rgba(0, 0, 0, 0.06);
    border-color: rgba(0, 66, 204, 0.15);
}

.servicios-page-content .servicio-card-mod h3 {
    margin: 0 0 0.65rem;
    padding-left: 0.25rem;
    font-size: 1.12rem;
    font-weight: 600;
    color: var(--primary);
    letter-spacing: -0.02em;
    line-height: 1.3;
}

.servicios-page-content .servicio-card-mod p {
    margin: 0;
    padding-left: 0.25rem;
    font-size: 0.92rem;
    line-height: 1.6;
    color: var(--secondary);
}

.servicios-page-content .servicios-cta {
    margin: 2.5rem 0 0;
    text-align: center;
}

@media (max-width: 992px) {
    .other-services-grid { grid-template-columns: repeat(2, 1fr); }
    .about-grid--nosotros { grid-template-columns: 1fr; gap: 24px; }
    .nosotros-gallery figure:not(:first-child) { margin-top: 0; }
    .nosotros-quality { min-height: auto; }
    .nosotros-about-grid { grid-template-columns: 1fr; }
    .mision-vision-grid { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
    .hero h1 { font-size: 2rem; }
    .nosotros-hero h1 { font-size: 1.75rem; }
    .nosotros-hero-sub { font-size: 1rem; }
    .servicios-hero h1 { font-size: 1.75rem; }
    .service-layout, .about-grid { grid-template-columns: 1fr; }
    .contact-box, .contacto-box { grid-template-columns: 1fr; }
    .contacto-hero h1 { font-size: 1.75rem; }
    .contacto-hero-sub { font-size: 1rem; }
    .other-services-grid { grid-template-columns: 1fr; }
    .servicios-page-content .servicios-cards { grid-template-columns: 1fr; }
    .footer-inner { grid-template-columns: 1fr; gap: 40px; }
    .footer-desc { max-width: none; }
    .footer-col { text-align: center; }
    .footer-contact { text-align: center; }
    .footer-sgc-link { margin-top: 8px; }
    .nav-links { display: none; }
    .btn-outline { margin-top: 15px; margin-left: 0; display: block; width: 100%; }
    .btn-primary { width: 100%; }
}
