/* Variables de color */
:root {
    --primario: #FF2C2C; 
    --secundario: #10B981; 
    --acento: #FFD700; 
    --neutro-claro: #F8FAFC; 
    --neutro-oscuro: #1F2937; 
    --neutro-medio: #64748b;
    --sombra: 0 4px 6px rgba(0, 0, 0, 0.1);
    --transicion: all 0.3s ease;

    /* Colores principales (navbar 1) */
    --primario: #FF2C2C;
    --secundario: #10B981;
    --acento: #FFD700;
    --neutro-claro: #F8FAFC;
    --neutro-oscuro: #1F2937;
    
    /* Nueva paleta para servicios (navbar 2 y contenido) */
    --rojo-tecnologico: #FF2C2C;
    --cian-vibrante: #cc0000;
    --gris-metalico: #684a4a;
    --blanco-suave: #F8FAFC;
    --rojo-oscuro: #5d1a1a;
    
    --sombra: 0 4px 12px rgba(0, 0, 0, 0.1);
    --transicion: all 0.3s ease;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

body {
    background-color: var(--neutro-claro);
    color: var(--neutro-oscuro);
    line-height: 1.6;
}

.navbar {
    background-color: white;
    box-shadow: var(--sombra);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    height: 70px;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    height: 100%;
    display: flex;
    justify-content: center; 
    align-items: center;
    padding: 0 2rem;
    position: relative; 
}

.logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--neutro-oscuro);
    text-decoration: none;
}


.menu-btn {
    display: none; 
    background: none;
    border: none;
    cursor: pointer;
    position: relative; 
    z-index: 3000; 
}


.nav-links {
    display: flex;
    list-style: none;
    gap: 1.5rem;
    color: red;
}

.nav-links a {
    text-decoration: none;
    color: var(--neutro-oscuro);
    font-weight: 600;
}
.nav-links a:hover {

    color: #007bff; 
}

/* =========================================
   ESTILOS M脫VILES (Max-width: 768px)
   ========================================= */
@media screen and (max-width: 768px) {
    

    .menu-btn {
        display: block;
        justify-content:baseline
    }

    /* 2. MENU OCULTO: Por defecto no se ve */
    .nav-links {
        display: none; /* Se oculta */
        position: absolute;
        top: 70px; /* Altura exacta de tu navbar */
        left: 0;
        width: 100%;
        background-color: white;
        flex-direction: column; /* Lista vertical */
        align-items: center;
        padding: 2rem 0;
        box-shadow: 0 5px 10px rgba(0,0,0,0.1);
        border-top: 1px solid #eee;
    }

    .nav-links li {
        margin: 1rem 0;
    }


    .nav-links.active {
        display: flex !important;
        flex-direction: column;
        position: absolute;
        top: 70px;
        left: 0;
        width: 100%;
        background-color: white;
        z-index: 2000;
    }
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, var(--primario) 0%, #ff5c5c 100%);
    color: white;
    padding: 10rem 2rem 5rem;
    text-align: center;
    position: relative;
    overflow: hidden;
}
.hero-logo {
    position: absolute;
    top: 5rem;
    left: 1.5rem;
    height: 20rem;
    opacity: 0.60;
    z-index: 2;
    transition: opacity 0.3s ease;
}

.hero-logo:hover {
    opacity: 1;
}

.hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 70%);
    transform: rotate(30deg);
}


.hero-content {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.hero h1 {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    text-shadow: 0 2px 4px rgba(0,0,0,0.2);
}

.hero p {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.btn {
    display: inline-block;
    padding: 0.8rem 2rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: var(--transicion);
    cursor: pointer;
    border: none;
    font-size: 1rem;
}

.btn-primary {
    background-color: var(--acento);
    color: var(--neutro-oscuro);
}

.btn-primary:hover {
    background-color: #e6c200;
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}

.btn-secondary {
    background-color: var(--secundario);
    color: white;
}

.btn-secondary:hover {
    background-color: #0da26d;
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}

/* Secciones */
.section {
    padding: 5rem 2rem;
}

.section-title {
    text-align: center;
    margin-bottom: 3rem;
    font-size: 2.5rem;
    color: var(--neutro-oscuro);
    position: relative;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: var(--secundario);
    border-radius: 2px;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
}

/* Servicios Claro */
.servicios-claro {
    background-color: white;
}

.servicios-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.servicio-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: var(--sombra);
    transition: var(--transicion);
}

.servicio-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.15);
}

.servicio-img {
    height: 200px;
    background: linear-gradient(135deg, var(--primario), #ff5c5c);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 3rem;
}

.servicio-content {
    padding: 1.5rem;
}

.servicio-content h3 {
    margin-bottom: 0.75rem;
    color: var(--neutro-oscuro);
}

/* GPS Section */

.section-title {
    text-align: center;
    margin-bottom: 2.5rem;
    font-size: 2.2rem;
    color: var(--secundario);
    position: relative;
}

.gps-section {
    background-color: var(--neutro-claro);
}

.gps-content {
    display: flex;
    align-items: center;
    gap: 3rem;
}

.gps-text {
    flex: 1;
}

.gps-image {
    flex: 1;
    background: linear-gradient(135deg, var(--secundario), #1ed7a3);
    height: 400px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 5rem;
}

.gps-text ul {
    margin: 1.5rem 0;
    padding-left: 1.5rem;
    color: var(--neutro-oscuro);
}

/* Empleo Section */
.empleo-section {
    background: linear-gradient(135deg, var(--neutro-oscuro) 0%, #2c3e50 100%);
    color: white;
}

.empleo-section .section-title {
    color: white;
}

.empleo-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.empleo-content p {
    margin-bottom: 2rem;
    font-size: 1.1rem;
    opacity: 0.9;
}

/* Contacto Section */
.contacto-section {
    background-color: white;
}

.contacto-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.contacto-info {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.contacto-item {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}

.contacto-icon {
    background: var(--primario);
    color: white;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    flex-shrink: 0;
}

.contacto-form {
    background: var(--neutro-claro);
    padding: 2rem;
    border-radius: 15px;
    box-shadow: var(--sombra);
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: var(--neutro-oscuro);
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 0.75rem;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-size: 1rem;
    transition: var(--transicion);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primario);
    box-shadow: 0 0 0 3px rgba(255, 44, 44, 0.2);
}

.form-group textarea {
    min-height: 150px;
    resize: vertical;
}

/* Footer */
.footer {
    background-color: var(--neutro-oscuro);
    color: white;
    padding: 2rem;
    text-align: center;
}

.footer i {
    color: var(--acento);
}

/* Responsive */
@media (max-width: 900px) {
    .gps-content {
        flex-direction: column;
    }
    
    .hero h1 {
        font-size: 2.5rem;
    }
}

@media (max-width: 768px) {
    .nav-links {
        display: none;
    }
    
    .hero {
        padding: 8rem 2rem 4rem;
    }
    
    .section {
        padding: 3rem 1rem;
    }
    
    .gps-image {
        width: 25rem;
    }
}
/* ===== PALETA PRINCIPAL ===== */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

body {
    background-color: var(--blanco-suave);
    color: var(--gris-metalico);
    line-height: 1.6;
}

/* ===== NAVBAR PRINCIPAL (del sitio) ===== */
.navbar-principal {
    background-color: white;
    box-shadow: var(--sombra);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 2000;
    justify-content: center;
}

.nav-container-principal {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 2rem;
    justify-content: center;
}

.logo-principal {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primario);
}

.logo-principal i {
    color: var(--primario);
}

.nav-links-principal {
    display: flex;
    list-style: none;
    gap: 1.5rem;
}

.nav-links-principal a {
    text-decoration: none;
    color: var(--neutro-oscuro);
    font-weight: 600;
    padding: 0.5rem 0;
    position: relative;
    transition: var(--transicion);
}

.nav-links-principal a:hover {
    color: var(--primario);
}
.nav-links a:hover {
    color: var(--secunda);
}
.nav-links a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--secundario);
    transition: var(--transicion);
}
.nav-links-principal a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--primario);
    transition: var(--transicion);
}

.nav-links-principal a:hover::after {
    width: 100%;
}

/* ===== NAVBAR SECUNDARIA (de esta secci贸n) ===== */
.navbar-secundaria {
    background: white;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    position: fixed;
    width: 100%;
    top: 72px;
    z-index: 1900;
    padding: 0.6rem 0;
    border-bottom: 2px solid var(--cian-vibrante);
}

.nav-container-secundaria {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: center;
    padding: 0 2rem;
}

.nav-links-secundaria {
    display: flex;
    list-style: none;
    gap: 1rem;
}

.nav-links-secundaria a {
    text-decoration: none;
    color: var(--rojo-tecnologico);
    font-weight: 600;
    padding: 0.5rem 1rem;
    border-radius: 30px;
    transition: var(--transicion);
    font-size: 0.95rem;
    background: rgba(0, 168, 204, 0.08);
}

.nav-links-secundaria a:hover,
.nav-links-secundaria a.active {
    background: var(--cian-vibrante);
    color: white;
    transform: translateY(-2px);
}

.content-wrapper {
    margin-top: 130px;
}

/* ===== HERO SECTION ===== */
.hero {
    background: linear-gradient(135deg, var(--rojo-oscuro) 0%, var(--rojo-tecnologico) 100%);
    color: white;
    padding: 6rem 2rem 4rem;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, rgba(255,255,255,0.05) 0%, transparent 70%);
    transform: rotate(30deg);
}

.hero-content {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.hero h1 {
    font-size: 2.8rem;
    margin-bottom: 1.2rem;
    text-shadow: 0 2px 4px rgba(0,0,0,0.2);
}

.hero p {
    font-size: 1.15rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.btn {
    display: inline-block;
    padding: 0.75rem 1.8rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: var(--transicion);
    cursor: pointer;
    border: none;
    font-size: 1rem;
}

.btn-primary {
    background-color: var(--cian-vibrante);
    color: white;
}

.btn-primary:hover {
    background-color: #008a9f;
    transform: translateY(-3px);
    box-shadow: 0 6px 15px rgba(0, 168, 204, 0.3);
}

.btn-secondary {
    background-color: var(--rojo-tecnologico);
    color: white;
}

.btn-secondary:hover {
    background-color: #1f4a70;
    transform: translateY(-3px);
    box-shadow: 0 6px 15px rgba(42, 91, 135, 0.3);
}

/* ===== SECCIONES ===== */
.section {
    padding: 4rem 2rem;
}

.section-title {
    text-align: center;
    margin-bottom: 2.5rem;
    font-size: 2.2rem;
    color: var(--rojo-tecnologico);
    position: relative;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%);
    width: 70px;
    height: 3px;
    background: var(--cian-vibrante);
    border-radius: 2px;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
}

/* Servicio Detalle */
.servicio-detalle {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: var(--sombra);
    margin-bottom: 2.5rem;
    display: flex;
    transition: var(--transicion);
}

.servicio-detalle:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(26, 54, 93, 0.2);
}

.servicio-icono {
    width: 220px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
    color: white;
    font-size: 3.5rem;
}

.fibra-icono {
    background: linear-gradient(135deg, var(--rojo-tecnologico), #1f4a70);
}

.tv-icono {
    background: linear-gradient(135deg, var(--cian-vibrante), #008a9f);
}

.telefono-icono {
    background: linear-gradient(135deg, var(--rojo-oscuro), var(--rojo-tecnologico));
}

.servicio-contenido {
    padding: 2rem;
    flex: 1;
}

.servicio-contenido h3 {
    font-size: 1.6rem;
    margin-bottom: 1.2rem;
    color: var(--rojo-tecnologico);
}

.caracteristicas {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 1.2rem;
    margin: 1.2rem 0;
}

.caracteristica {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
}

.caracteristica i {
    color: var(--cian-vibrante);
    font-size: 1.2rem;
    margin-top: 0.2rem;
}

.planes {
    background: var(--blanco-suave);
    padding: 1.8rem;
    border-radius: 10px;
    margin-top: 1.8rem;
    border: 1px solid rgba(42, 91, 135, 0.1);
}

.planes h4 {
    margin-bottom: 1.2rem;
    color: var(--rojo-tecnologico);
}

.plan-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 1.2rem;
}

.plan {
    background: white;
    padding: 1.3rem;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(0, 168, 204, 0.2);
    transition: var(--transicion);
}

.plan:hover {
    transform: translateY(-3px);
    border-color: var(--cian-vibrante);
}

.plan h5 {
    margin-bottom: 0.6rem;
    color: var(--rojo-tecnologico);
}

.plan .precio {
    font-size: 2rem;
    font-weight: 1000;
    color: var(--rojo-tecnologico);
    margin: 1rem 0;
}

/* Beneficios Section */
.beneficios-section {
    background: linear-gradient(135deg, var(--rojo-oscuro) 0%, #22446a 100%);
    color: white;
    padding: 4rem 2rem;
}

.beneficios-section .section-title {
    color: white;
}

.beneficios-section .section-title::after {
    background: var(--cian-vibrante);
}

.beneficios-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 1.8rem;
    margin-top: 2rem;
}

.beneficio-card {
    text-align: center;
    padding: 1.8rem;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 15px;
    transition: var(--transicion);
    backdrop-filter: blur(5px);
}

.beneficio-card:hover {
    background: rgba(255, 255, 255, 0.12);
    transform: translateY(-5px);
}

.beneficio-icono {
    font-size: 2.2rem;
    margin-bottom: 1.2rem;
    color: var(--cian-vibrante);
}

/* CTA Section */
.cta-section {
    background: linear-gradient(135deg, var(--rojo-tecnologico) 0%, var(--rojo-oscuro) 100%);
    color: white;
    padding: 4rem 2rem;
    text-align: center;
}

.cta-content {
    max-width: 750px;
    margin: 0 auto;
}

.cta-content h2 {
    font-size: 2.2rem;
    margin-bottom: 1.2rem;
}

.cta-content p {
    font-size: 1.1rem;
    margin-bottom: 1.8rem;
    opacity: 0.9;
}

/* Footer Base */
.footer {
    background-color: var(--rojo-oscuro);
    color: rgba(255, 255, 255, 0.8);
    padding: 3rem 1rem; 
    text-align: center;
}

/* Contenedor flexible para controlar la posición */
.footer-content {
    display: flex;
    flex-direction: column; 
    align-items: center;    
    gap: 1.5rem;            
}

/* Estilos de los Íconos */
.social-links {
    display: flex;
    gap: 1.5rem; 
}

.social-links i {
    color: var(--neutro-medio);
    font-size: 1.8rem; 
    text-decoration: none;
    transition: all 0.3s ease; 
}

#i1:hover {
    color: #d80097; 
    transform: translateY(-3px); 
}
#i2:hover {
    color: #0070d8; 
    transform: translateY(-3px); 
}
#i3:hover {
    color: #0c8f00; 
    transform: translateY(-3px); 
}

/* Responsive */
@media (max-width: 900px) {
    .servicio-detalle {
        flex-direction: column;
    }
    
    .servicio-icono {
        width: 100%;
        height: 180px;
    }
    
    .hero h1 {
        font-size: 2.2rem;
    }
    
    .navbar-secundaria {
        top: 70px;
    }
    
    .content-wrapper {
        margin-top: 120px;
    }
}

@media (max-width: 768px) {
    .nav-links-principal,
    .nav-links-secundaria {
        display: none;
    }
    
    .hero {
        padding: 5rem 1.5rem 3rem;
    }
    
    .section {
        padding: 2.5rem 1.2rem;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
    
    .navbar-secundaria {
        display: none;
    }
    
    .content-wrapper {
        margin-top: 80px;
    }
}
/* RESET B脕SICO */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    background-color: #F1F5F9; /* blanco nube */
    color: #6B7280; /* gris carretera */
}

/* ===== HEADER ===== */
.gps-header {
    background-color: white;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
}

.gps-header-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 2rem;
}

.gps-logo {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    font-size: 1.5rem;
    font-weight: 700;
    color: #2E8B57;
}

.gps-logo i {
    color: #2E8B57;
}

.gps-nav ul {
    display: flex;
    list-style: none;
    gap: 1.4rem;
}

.gps-nav a {
    text-decoration: none;
    color: #6B7280;
    font-weight: 600;
    padding: 0.4rem 0;
    position: relative;
}

.gps-nav a:hover,
.gps-nav-active {
    color: #2E8B57;
}

.gps-nav a::after,
.gps-nav-active::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: #2E8B57;
    transition: width 0.3s ease;
}

.gps-nav a:hover::after {
    width: 100%;
}

.gps-nav-active::after {
    width: 100%;
}

/* ===== MAIN ===== */
.gps-main {
    margin-top: 80px;
}

/* ===== HERO ===== */
.gps-hero {
    background: linear-gradient(135deg, #111827 0%, #2E8B57 100%);
    color: white;
    padding: 5rem 2rem 4rem;
    text-align: center;
}

.gps-hero h1 {
    font-size: 2.6rem;
    margin-bottom: 1.2rem;
    text-shadow: 0 2px 4px rgba(0,0,0,0.3);
}

.gps-hero p {
    font-size: 1.15rem;
    max-width: 750px;
    margin: 0 auto 2rem;
    opacity: 0.95;
}

/* ===== BOTONES ===== */
.gps-btn {
    display: inline-block;
    padding: 0.75rem 1.8rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    cursor: pointer;
    border: none;
    font-size: 1rem;
    text-align: center;
    transition: all 0.3s ease;
}

.gps-btn-primary {
    background-color: #2E8B57;
    color: white;
}

.gps-btn-primary:hover {
    background-color: #226644;
    transform: translateY(-3px);
    box-shadow: 0 6px 15px rgba(46, 139, 87, 0.3);
}

.gps-btn-secondary {
    background-color: #FFD700;
    color: #111827;
    font-weight: 700;
}

.gps-btn-secondary:hover {
    background-color: #e6c200;
    transform: translateY(-3px);
    box-shadow: 0 6px 15px rgba(255, 215, 0, 0.3);
}

.gps-btn-block {
    width: 100%;
    padding: 1rem;
    font-size: 1.1rem;
}

/* ===== SECCIONES ===== */
.gps-section {
    padding: 4rem 2rem;
}

.gps-bg-light {
    background-color: white;
}

.gps-bg-dark {
    background: linear-gradient(135deg, #111827, #1e293b);
    color: white;
}

.gps-wrapper {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

.gps-section-title {
    text-align: center;
    margin-bottom: 2.5rem;
    font-size: 2.2rem;
    color: #2E8B57;
    position: relative;
}

.gps-section-title::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%);
    width: 70px;
    height: 3px;
    background: #FFD700;
    border-radius: 2px;
}

/* ===== TIPOS DE SERVICIO ===== */
.gps-types-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.gps-type-card {
    text-align: center;
    padding: 2rem;
    background: white;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
}

.gps-type-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.12);
}

.gps-icon-large {
    font-size: 2.8rem;
    color: #2E8B57;
    margin-bottom: 1.2rem;
}

.gps-type-card h3 {
    margin: 1rem 0;
    color: #2E8B57;
}

/* ===== VIDEO ===== */
.gps-video-container {
    max-width: 100%;
    margin: 0 auto;
    position: center;
    padding-bottom: 56.25%;
    height: 0;
    overflow: hidden;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    display: block;
}

/* ===== GALER脥A ===== */
.gps-gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1rem;
    margin-top: 2rem;
}

.gps-gallery-item img {
    width: 100%;
    height: 300px;
    display: block;

    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.gps-gallery-item img:hover {
    transform: scale(1.03);
}

.gps-gallery-caption {
    text-align: center;
    margin-top: 1.5rem;
    color: #6B7280;
}

/* ===== FORMULARIO ===== */
.gps-form {
    max-width: 700px;
    margin: 0 auto;
    background: white;
    padding: 2.5rem;
    border-radius: 15px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.gps-form-row {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 1.2rem;
}

.gps-form-group {
    flex: 1;
}

.gps-form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: #6B7280;
}

.gps-form-group input,
.gps-form-group select,
.gps-form-group textarea {
    width: 100%;
    padding: 0.8rem;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-size: 1rem;
}

/* ===== FOOTER ===== */
.gps-footer {
    background-color: #111827;
    color: rgba(255, 255, 255, 0.8);
    padding: 2.5rem 2rem;
    text-align: center;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
    .gps-nav ul {
        display: none;
    }

    .gps-hero h1 {
        font-size: 2rem;
    }

    .gps-form-row {
        flex-direction: column;
        gap: 1rem;
    }

    .gps-main {
        margin-top: 70px;
    }

    .gps-video-container {
        padding-bottom: 50%;
    }
    
    .gps-video-container img {
        width: 25rem;
    }
    
    .gps-gallery-item img {
        width: 18rem;
    }

    .gps-wrapper {
        padding: 0 1rem;
    }
}