/* --- INICIO PRINCIPAL --- */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Times New Roman", Times, serif;
}

.barra-navegacion {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: #fff;
    padding: 10px 30px;
    border-bottom: 1px solid #ccc;
    position: sticky;
    top: 0;
    z-index: 1000;
}

.logo-barra img {
    width: 50px;
    height: auto;
}

.barra-navegacion nav ul {
    list-style: none;
    display: flex;
    gap: 20px;
    margin: 0;
    padding: 0;
}

.barra-navegacion nav ul li a {
    color: #333;
    text-decoration: none;
    font-weight: bold;
    padding: 10px;
    transition: color 0.3s;
}

.barra-navegacion nav ul li a:hover {
    color: #007BFF;
}

.acciones {
    display: flex;
    align-items: center;
    gap: 15px;
}

.acciones a {
    color: #333;
    text-decoration: none;
    font-size: 14px;
    display: flex;
    align-items: center;
}

.acciones a img {
    width: 18px;
    margin-right: 5px;
}

.encabezado {
    padding: 40px 20px;
    background-color: #f5f5f5;
    text-align: center;
}

.titulo-empresa {
    font-size: 28px;
    font-weight: bold;
    color: #333;
    margin-bottom: 20px;
}

.fila-principal {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 30px;
}

.logo-empresa {
    width: 400px;
    max-width: 150%;
}

.descripcion {
    flex: 1;
    max-width: 400px;
    line-height: 1.6;
    text-align: center; 
    margin: 0 auto;
}

.zonas-internet {
    background-color: #e0e0e0;
    padding: 40px 80px;
    border-radius: 40px;
    min-width: 20px;
}

.zonas-internet h3 {
    margin-bottom: 10px;
    font-size: 20px;
    text-align: center;
}

.zonas-internet ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.zonas-internet li {
    padding: 5px 0;
    border-bottom: 1px solid #ccc;
}

.zonas-internet li:last-child {
    border-bottom: none;
}

.contenido-principal {
    padding: 50px 20px;
    text-align: center;
}

footer {
    text-align: center;
    padding: 15px;
    background-color: #000;
    color: #fff;
    width: 100%;
}

/* --- Responsivo --- */
@media (max-width: 1024px) {
    .fila-principal {
        flex-direction: column;
    }
}

@media (max-width: 768px) {
    .barra-navegacion {
        flex-direction: column;
        gap: 10px;
    }

    .zonas-internet {
        width: 90%;
        margin: 0 auto;
    }
}
.ubicacion-contacto {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
    max-width: 1000px;
    margin: 50px auto;
    padding: 0 20px;
}

.mapa-contenedor {
    flex: 1;
    min-width: 300px;
}

.info-contacto {
    flex: 1;
    min-width: 250px;
    text-align: center;
    background-color: #f5f5f5;
    padding: 20px;
    border-radius: 15px;
}

.info-contacto h2 {
    font-size: 24px;
    margin-bottom: 20px;
    font-weight: bold;
    color: #333;
}

.info-contacto ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.info-contacto li {
    font-size: 18px;
    margin-bottom: 10px;
    line-height: 1.5;
}
/*////////////////*/
/* QUIENES SOMOS */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, sans-serif;
}

.barra-navegacion {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: #fff;
    padding: 10px 30px;
    border-bottom: 1px solid #ccc;
    position: sticky;
    top: 0;
    z-index: 1000;
}

.logo-barra img {
    width: 50px;
}

.barra-navegacion nav ul {
    list-style: none;
    display: flex;
    gap: 20px;
}

.barra-navegacion nav ul li a {
    text-decoration: none;
    color: #333;
    font-weight: bold;
    padding: 5px;
}

.barra-navegacion nav ul li a.activo,
.barra-navegacion nav ul li a:hover {
    color: #007BFF;
    border-bottom: 2px solid #007BFF;
}

.acciones {
    display: flex;
    gap: 15px;
}

.acciones a {
    display: flex;
    align-items: center;
    text-decoration: none;
    color: #333;
    font-size: 14px;
}

.acciones img {
    width: 18px;
    margin-right: 5px;
}

.encabezado-quienes {
    text-align: center;
    padding: 40px;
    background: #f9f9f9;
}

.encabezado-quienes h1 {
    margin-bottom: 20px;
    font-size: 2rem;
    color: #007BFF;
}

.encabezado-quienes .contenido {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
    max-width: 700px;
    margin: 0 auto;
}

.encabezado-quienes img {
    width: 120px;
    height: auto;
}

.encabezado-quienes p {
    font-size: 1.1rem;
    line-height: 1.6;
    color: #444;
}

.mision-vision {
    display: flex;
    justify-content: space-around;
    padding: 40px;
    gap: 30px;
}

.mision-vision .bloque {
    flex: 1;
    background: #f1f1f1;
    padding: 20px;
    border-radius: 10px;
}

.mision-vision h2 {
    margin-bottom: 10px;
    color: #007BFF;
}

.valores {
    text-align: center;
    padding: 40px;
    background: #f9f9f9;
}

.valores h2 {
    margin-bottom: 20px;
    color: #007BFF;
}

.valores ul {
    list-style: none;
    display: inline-block;
    text-align: left;
}

.valores li {
    margin: 5px 0;
}

footer {
    background: #333;
    color: white;
    text-align: center;
    padding: 15px;
}
.icono-titulo {
    width: 80px;
    height: auto;
    display: block;
    margin: 0 auto 10px auto; 
}

.valores-contenedor {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 30px;
}

.valores-centro {
    text-align: center;
    background: #f1f1f1;
    padding: 30px;
    border-radius: 15px;
}

.valores-centro h2 {
    margin-bottom: 20px;
    color: #007BFF;
}

.valores-centro ul {
    list-style: none;
    text-align: left;
    display: inline-block;
}

.decoracion {
    width: 120px;
    height: auto;
}

/*////////////////*/
/* --- SERVICIOS --- */
.servicios {
    padding: 60px 20px;
    text-align: center;
    background: #f9f9f9;
}

.servicios h1 {
    font-size: 2rem;
    margin-bottom: 40px;
    color: #333;
}

.cards-container {
    display: grid;
    grid-template-columns: repeat(3, 1fr); 
    gap: 25px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

@media (max-width: 900px) {
    .cards-container {
        grid-template-columns: repeat(2, 1fr); 
    }
}

@media (max-width: 600px) {
    .cards-container {
        grid-template-columns: 1fr; 
    }
}


.card {
    background: #fff;
    border-radius: 15px;
    padding: 20px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.card:hover {
    transform: translateY(-5px);
}

.card img {
    width: 100%;
    border-radius: 12px;
    margin-bottom: 15px;
}

.card h2 {
    font-size: 1.2rem;
    margin-bottom: 10px;
    color: #444;
}

.card p {
    font-size: 0.95rem;
    margin: 5px 0;
    color: #555;
}

.card .precio {
    font-size: 1.5rem;
    font-weight: bold;
    color: #e6007e; 
    margin: 15px 0;
}

.card .precio span {
    display: block;
    font-size: 0.9rem;
    color: #888;
    font-weight: normal;
}

.btn-contratar {
    display: inline-block;
    background: #2ee600;
    color: #fff;
    padding: 12px 25px;
    border-radius: 25px;
    font-size: 1rem;
    font-weight: bold;
    text-decoration: none;
    text-align: center;
    cursor: pointer;
    transition: background 0.3s ease;
    margin-top: auto;
}

.btn-contratar:hover {
    background: #200dcf;
}
